🌐
CoreIDE
coreide.com
Download CoreIDE - Best free Java, JavaScript, Node.js IDE
Download the best free IDE for Java, JavaScript, Node.js, TypeScript, Spring, Maven, React, Node.js, Spring Boot & AngularJS
🌐
JetBrains
jetbrains.com › help › idea › developing-node-js-applications.html
Node.js | IntelliJ IDEA Documentation
Download your application sources and store them on your computer. Go to File | New | Module from Existing Sources. In the dialog that opens, select the location of your application sources. Learn more from Modules. If you are going to continue developing an existing Node.js application, open it in IntelliJ IDEA, configure Node.js in it, and download the required dependencies.
🌐
Visual Studio
visualstudio.microsoft.com › vs › features › node-js
Node.js Developer Tools | Visual Studio
August 15, 2025 - Project templates, IntelliSense, npm integration, debugging, & more. Turn Visual Studio into a powerful Node.js development environment. Download for free.
🌐
Onestopdevshop
onestopdevshop.io › home › node.js ide – a quick guide for beginners
Node.js IDE - A Quick Guide For Beginners [2023]
January 25, 2023 - For the cloud-based IDEs, Eclipse is the most preferred and recommended Node.js IDE. It is easy to use and understand. It is predictive and with an automatic build. Eclipse IDE has been in existence for years and has been used by many developers over the years. It has been improved over the years to become the most popular cloud-based Nodejs IDE. For a desktop Nodejs IDE, Visual Studio Code is the most popular and most recommended. It is a flexible and superior IDE. It is free to download and use.
🌐
BairesDev
bairesdev.com › home › blog › software development
8 Best Node JS IDE & Text Editors for Application Development
March 29, 2023 - Microsoft developed this lightweight, open-source IDE. You can freely download and use this IDE on Windows, Mac, or Linux operating systems. It is a top-class cloud IDE for Node.js development, so you can code and debug in the cloud.
🌐
JetBrains
jetbrains.com › webstorm
WebStorm: The JavaScript and TypeScript IDE, by JetBrains
June 1, 2021 - Make development more productive and enjoyable with WebStorm, the IDE for JavaScript and related technologies.
🌐
Node.js
nodejs.org › en
Node.js — Run JavaScript Everywhere
Node.js® is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.
Top answer
1 of 11
47
Eclipse Che is an open source project that allows anyone to contribute to a project without installing software. Che defines a new type of workspace that is composed of projects and runtimes, making its state distributable, portable and versionable. It uses VMs, containers, and Web services to bring repeatability, consistency, and performance to workspaces.Eclipse Che is an open source project that allows anyone to contribute to a project without installing software. Che defines a new type of workspace that is composed of projects and runtimes, making its state distributable, portable and versionable. It uses VMs, containers, and Web services to bring repeatability, consistency, and performance to workspaces.Custom commands: You can package up custom commands with the workspace and then use them (or share them) with everyone else. | Docker runtimes: You can choose from pre-configured environments for Java, Javascript, C++, PHP, C#, etc... or you can define your own by dropping in a Dockerfile - makes it easy for simple and complex projects. · | Git and SVN support: Projects can be easily imported from any Git or Svn repository hosting service. · | SSH and terminal support: Built-in terminal with root access so you can make changes to running machines. Being able to SSH into the workspace so that you can use a desktop IDE is handy. | Slow runtime: Online IDE is much slower than the desktop one. | Requires Docker: Docker requirement also is a CON for people who have Home editions of Windows 10 and so have hurdles applied since Docker is not Windows 10 Home edition friendly. However, Docker Toolbox can be used to mitigate the limitations said Windows 10 version. | Open source: It's open source under the Eclipse Foundation using a (friendly) EPL 1.0 license. | Application previews: Che does a nice job to automatically map the service:port running in a Docker container (e.g. tomcat on 8080) to the Docker port it actually uses (something in the ephemeral range). It is possible that you never need to figure that out as it's just made available when you run your server. | Side-by-side Git Diff: You can do line-by-line comparisons between two git commits. Makes it really easy to spot changes. | Portable workspaces: The workspace in Che includes project sources, IDE and the runtime. So if you hand your Che workspace definition to another user and they execute it they will get everything they need to build, run and debug the project. · Also the runtime is in a Docker container so it will work even if the second user is on a different OS than the original user who shared their workspace with them. Also the runtime is in a Docker container so it will work even if the second user is on a different OS than the original user who shared their workspace with them.
2 of 11
29
Sublime Text, while being a lightweight text editor, provides powerful IDE-like features, Python scripting, and the ability to customize every aspect of the editor itself, letting users code and refactor with speed and efficiency.Sublime Text, while being a lightweight text editor, provides powerful IDE-like features, Python scripting, and the ability to customize every aspect of the editor itself, letting users code and refactor with speed and efficiency.Distraction free editing mode: Distraction-free editing takes over your screen and removes every UI element so you can focus on code. | Has tons of plugins available | Multiple languages are supported | IDE features without the cruft: Sublime Text, while being lighter-weight than an IDE, still supports many IDE features. · - Text from the current file is used to provide autocomplete. · - Project Support (folder browsing, scoped history, build-system declarations). · - Refactoring support is emulated through multi-select, project-wide find and replace, and regular expression search. · - Syntax-aware selection and GoTo for quickly jumping to locations in the project. · - Snippets and Macros. · - A Python console for everything else. | Consistent cross-platform: Sublime Text looks consistently the same across Windows, OS X, and Linux. | Beginner-friendly: When you start using Sublime Text, it doesn't drown you in keyboard shortcuts or non-intuitive use-concepts. However, high-level functionality can still be easily accessed when the need for it arises. | Multi-line select and editing: Multiple cursors and column selection allows for versatile ways of editing. · `ctrl + d` will select the current word and each time the command is repeated, it adds the next occurrence of the word to the selection. · `ctrl + click` or `middle-mouse click` will place another cursor in the place that's clicked. Cursors can then be controlled together. This also permits selecting vertically. · `ctrl + shift + l` will place a cursor on every highlighted line. | Comfortable to work with: Sublime Text has a minimap on the side that provides a top-down view of the file and keyboard shortcuts for most actions. It also supports a large number of languages and general text editing features out of the box. | Not a full IDE: It does not necessarily function on a project level | Offers a command palette: Command Palette allows for fuzzy searching all available settings, snippets, etc. | Permits instant file switching: Open Goto Anything by pressing Ctrl or Command + P and by using fuzzy search you can look for a file in your project. The file will load even without pressing enter, so you can make sure you've found the correct file without committing. | Proprietary: Sublime Text protects and copyrights its code and is thus not the freedom-ware some would like it to be. | Fully customizable: Sublime Text allows for all sorts of customization to help users change almost everything in the editor: Key Bindings, Menus, Snippets, Macros, Completions, and many more. Essentially, just about everything in Sublime Text is customizable with simple JSON files. This system gives the user flexibility as settings can be specified on a per-file type and per-project basis. | Direct server upload: Provides command line shortcut for server upload. | Freemium: A Sublime license can be bought but it can still be used for free. However, a pop-up appears when you save multiple times. | Dynamic Build System: Choose from many build systems or craft your own. | Portable settings: Settings are modular and can be shared. | Installable package manager: The package manager is a plugin and can be swapped with something else custom. | Very fast: Sublime is quick to start and never slows down. The UI is always responsive and you know what is happening in the background. | Easy to get started: All you need to do when starting up is to install a package manager and modify user configuration. | Lightweight: Sublime Text is very lightweight by default. Customization occurs on the fly thanks to Package Control. | Interruption while work: "Purchasing" messages box interrupts while saving file. | Annoying whitespace management: All too often it does the wrong thing with indentation on otherwise blank lines. | Loading big files on Windows is slow: Here's a rough comparison: a 70 MB file takes about 2 seconds to load in Notepad++, whereas the same file in ST3 takes over 10 seconds to load. | Paid: Although paying for something good is far from a Con, having the competition this editor has and still having to pay for it is definitely a Con. | No printing of files: Sublime Texts offers no way of printing the files it edits. | Amazing experience, speed, easy, ease of use, stable, etc... · It's a mini IDE.
🌐
Quora
quora.com › Which-one-is-the-best-and-completely-free-IDE-for-Node-js-development
Which one is the best and completely free IDE for Node.js development? - Quora
Answer (1 of 6): Hi, In my opinion, how you set up your favorite IDE/text editor is all that matters. There are really amazing plugins and extensions available for whatever IDE you are currently working with. I was really impressed with Visual Studio Code out-of-the-box for its debugging tools,...
Find elsewhere
🌐
Visual Studio Code
code.visualstudio.com › nodejs
Node.js tutorial in Visual Studio Code
November 3, 2021 - VS Code uses TypeScript type declaration (typings) files (for example node.d.ts) to provide metadata to VS Code about the JavaScript based frameworks you are consuming in your application. Type declaration files are written in TypeScript so they can express the data types of parameters and functions, allowing VS Code to provide a rich IntelliSense experience. Thanks to a feature called Automatic Type Acquisition, you do not have to worry about downloading these type declaration files, VS Code will install them automatically for you.
🌐
Webmobtech
webmobtech.com › blog › top-10-best-ide-for-nodejs-application-development
Top 10 Best IDE For Node.js Application Development
Unleash the power of Node.js with top 10 IDE for Nodejs seamless application development. Eclipse, Cloud9, Visual Studio Code, Komodo IDE
🌐
Node.js
nodejs.org › en › download › current
Node.js — Download Node.js®
Looking for Node.js source? Download a signed Node.js source tarball.
🌐
Radixweb
radixweb.com › blog › node-js-ides-for-app-development
Top 11 Node.js IDEs for App Development in 2025 | Radixweb
Top Node.js IDEs for app development in 2025 are IntelliJ IDEA, Eclipse Che, Cloud9, Visual Studio Code, Komodo IDE, WebMatrix, Sublime Text, WebStorm, Koding, and Gitpod.
🌐
Medium
medium.com › @rohan_precise › discover-the-best-10-node-js-ides-for-building-modern-applications-in-2023-2ff538246d92
Discover the Best 10 Node.js IDEs for Building Modern Applications in 2023 | by Rohan Varma | Medium
May 25, 2023 - With features like intelligent code completion, powerful debugging tools, and Git integration, VS Code is a go-to choice for many Node.js developers. ... WebStorm is a comprehensive IDE specifically designed for JavaScript and Node.js development. It provides intelligent coding assistance, powerful debugging capabilities, and seamless integration with popular tools and frameworks.
🌐
Codecondo
codecondo.com › best-ide-for-node-js
Top 15 Node IDEs In 2021 For Developing Node.js Apps! - Business, Technology and Lifestyle Blog
June 20, 2025 - In our last post on Node.js I have highlighted some of the best web hosting platforms for the Node.js application, today I have listed down the names of major IDEs for Node.js development. Most of them support multiple platforms like OSX, Linux, and Windows.
🌐
Code-B
code-b.dev › blog › best-node-js-ides
Top 10 Best IDEs for Node.js Software Development in 2025
Debugger support for Node.js applications. Lightweight and cross-platform compatibility. GitHub Repo Stats: Stars: 29.3k, Forks: 5.9k (JetBrains plugin for WebStorm) ... A full-fledged IDE specializing in JavaScript and front-end development, also providing excellent Node.js support.
🌐
Orient Software
orientsoftware.com › blog › nodejs-ide
7 Best Node.js Editors for Application Development
July 14, 2023 - Integrations are a major component of Node JS IDEs. They essentially function as a portal where developers can import hundreds, even thousands, of libraries, tools, and packages into their environment. In doing so, this can enhance the functionality of the IDE, allowing developers to personalize the developer experience to suit their needs. With integrations, developers can download ...
🌐
Kellton
kellton.com › kellton-tech-blog › ultimate-guide-to-best-nodejs-ides-2024
Best Node.js IDEs to try out in 2024
As IntelliJ IDEA supports a line-up of frameworks, including JavaScript, Angular.js, Node.js, and Java, it enables a foundation for seamless development processes, increased productivity, and cutting-edge outcomes.
Price   $$
Address   Plot No – 404-405, 4th & 6th Floor, ILABS Centre, Udyog Vihar, Phase- III, 122016, Gurgaon
🌐
eTatvaSoft
etatvasoft.com › home › top 10 best ide for node js application development
Top 10 Best IDE for Node js Application Development - eTatvaSoft
May 16, 2024 - The superleader’s Microsoft developed Visual Studio Code is one of the greatest Node.js IDEs available. It is not so big but a reliable source code editor that can be downloaded as it is free to use. We can understand the good part of this is that it comes with built-in support for JavaScript ...
Address   2nd Floor, TatvaSoft House, Rajpath Club Road, Near Shivalik Business Center, Opp. Golf Academy, Off S G Road, 380054, Ahmedabad
🌐
TatvaSoft
tatvasoft.com › home › best node js ide for node app development
Best Node JS IDE for Node App Development - TatvaSoft Blog
September 25, 2025 - Microsoft’s Visual Studio Code is one of the most prioritized choices when it comes to available Node.js IDEs. It is a small yet capable code editor that can be downloaded and used for free.