How to Run or Debug JavaScript in Sublime text ? Last Updated : 21 Nov, 2023 Comments Improve Suggest changes 8 Likes Like Report Freeware text and source code editor Sublime Text is available for users of Windows, macOS, and Linux. Its features can be expanded with plugins, which are developed and maintained under free software licenses by the local community, and users can customize it with themes. The editor includes an easy-to-use interface and provides features for programmers, including support for regular expressions in search and replace, code folding, an adjustable syntax highlighting function, a terminal output window, and many more. Steps for running or debugging JavaScript in Sublime text:Step 1: Download and install Node.js in your system. (If you have installed it, move to the next step) Step 2: Open the Sublime text click on Tools>Build System> new Build System.Step 3: A screen will appear as follows: Step 4: now replace the following content as given below: {"cmd":["node", "$file"], "selector": "main.js"} Step 5: Save the file as "JavaScript.sublime-build" in default user folder or else get into File>Save or CTRL + S. Step 6: Close the file and again Navigate to Tools> Build System and now you can see the JavaScript and select it.Step 7: Now you can run and debug the JavaScript. So test it we create a file named text.js. Here are the results. You can also use multiple packages and tools based on your preferences and the needs of your project, so feel free to look into different possibilities to discover the one that best suits you. Create Quiz Comment P priyankaarikatla696 Follow 8 Improve P priyankaarikatla696 Follow 8 Improve Article Tags : JavaScript Web Technologies Geeks Premier League Geeks Premier League 2023 Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings5 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in JavaScript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)8 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readScope of Variables in JavaScript3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like