Node.js tutorial in Visual Studio Code
Node.js is a platform for building fast and scalable server applications using JavaScript. Node.js is the runtime andnpm is the Package Manager for Node.js modules.
Visual Studio Code has support for the JavaScript and TypeScript languages out-of-the-box as well as Node.js debugging. However, to run a Node.js application, you will need to install the Node.js runtime on your machine.
To get started in this walkthrough,install Node.js for your platform. The Node Package Manager is included in the Node.js distribution. You'll need to open a new terminal (command prompt) for thenode
andnpm
command-line tools to be on your PATH.
To test that you have Node.js installed correctly on your computer, open a new terminal and typenode --version
and you should see the current Node.js version installed.
Linux: There are specific Node.js packages available for the various flavors of Linux. SeeInstalling Node.js via package manager to find the Node.js package and installation instructions tailored to your version of Linux.
Windows Subsystem for Linux: If you are on Windows, WSL is a great way to do Node.js development. You can run Linux distributions on Windows and install Node.js into the Linux environment. When coupled with theWSL extension, you get full VS Code editing and debugging support while running in the context of WSL. To learn more, go toDeveloping in WSL or try theWorking in WSL tutorial.
Hello World
Let's get started by creating the simplest Node.js application, "Hello World".
Create an empty folder called "hello", navigate into and open VS Code:
mkdir hellocd hellocode .
Tip: You can open files or folders directly from the command line. The period '.' refers to the current folder, therefore VS Code will start and open the
Hello
folder.
From the File Explorer toolbar, press the New File button:
and name the fileapp.js
:
By using the.js
file extension, VS Code interprets this file as JavaScript and will evaluate the contents with the JavaScript language service. Refer to the VS CodeJavaScript language topic to learn more about JavaScript support.
Create a simple string variable inapp.js
and send the contents of the string to the console:
var msg ='Hello World';console.log(msg);
Note that when you typedconsole.
IntelliSense on theconsole
object was automatically presented to you.
Also notice that VS Code knows thatmsg
is a string based on the initialization to'Hello World'
. If you typemsg.
you'll see IntelliSense showing all of the string functions available onmsg
.
After experimenting with IntelliSense, revert any extra changes from the source code example above and save the file (⌘S (Windows, LinuxCtrl+S)).
Running Hello World
It's simple to runapp.js
with Node.js. From a terminal, just type:
node app.js
You should see "Hello World" output to the terminal and then Node.js returns.
Integrated Terminal
VS Code has anintegrated terminal which you can use to run shell commands. You can run Node.js directly from there and avoid switching out of VS Code while running command-line tools.
View >Terminal (⌃` (Windows, LinuxCtrl+`) with the backtick character) will open the integrated terminal and you can runnode app.js
there:
For this walkthrough, you can use either an external terminal or the VS Code integrated terminal for running the command-line tools.
Debugging Hello World
As mentioned in the introduction, VS Code ships with a debugger for Node.js applications. Let's try debugging our simple Hello World application.
To set a breakpoint inapp.js
, put the editor cursor on the first line and pressF9 or click in the editor left gutter next to the line numbers. A red circle will appear in the gutter.
To start debugging, select theRun and Debug view in the Activity Bar:
You can now click Debug toolbar green arrow or pressF5 to launch and debug "Hello World". Your breakpoint will be hit and you can view and step through the simple application. Notice that VS Code displays a different colored Status Bar to indicate it is in Debug mode and the DEBUG CONSOLE is displayed.
Now that you've seen VS Code in action with "Hello World", the next section shows using VS Code with a full-stack Node.js web app.
Note: We're done with the "Hello World" example so navigate out of that folder before you create an Express app. You can delete the "Hello" folder if you want as it is not required for the rest of the walkthrough.
An Express application
Express is a very popular application framework for building and running Node.js applications. You can scaffold (create) a new Express application using the Express Generator tool. The Express Generator is shipped as an npm module and installed by using the npm command-line toolnpm
.
Tip: To test that you've got
npm
correctly installed on your computer, typenpm --help
from a terminal and you should see the usage documentation.
Install the Express Generator by running the following from a terminal:
npm install -g express-generator
The-g
switch installs the Express Generator globally on your machine so you can run it from anywhere.
We can now scaffold a new Express application calledmyExpressApp
by running:
express myExpressApp --view pug
This creates a new folder calledmyExpressApp
with the contents of your application. The--view pug
parameters tell the generator to use thepug template engine.
To install all of the application's dependencies (again shipped as npm modules), go to the new folder and executenpm install
:
cd myExpressAppnpm install
At this point, we should test that our application runs. The generated Express application has apackage.json
file which includes astart
script to runnode ./bin/www
. This will start the Node.js application running.
From a terminal in the Express application folder, run:
npm start
The Node.js web server will start and you can browse tohttp://localhost:3000 to see the running application.
Great code editing
Close the browser and from a terminal in themyExpressApp
folder, stop the Node.js server by pressingCTRL+C.
Now launch VS Code:
code .
Note: If you've been using the VS Code integrated terminal to install the Express generator and scaffold the app, you can open the
myExpressApp
folder from your running VS Code instance with theFile >Open Folder command.
TheNode.js andExpress documentation does a great job explaining how to build rich applications using the platform and framework. Visual Studio Code will make you more productive in developing these types of applications by providing great code editing and navigation experiences.
Open the fileapp.js
and hover over the Node.js global object__dirname
. Notice how VS Code understands that__dirname
is a string. Even more interesting, you can get full IntelliSense against the Node.js framework. For example, you can requirehttp
and get full IntelliSense against thehttp
class as you type in Visual Studio Code.
VS Code uses TypeScript type declaration (typings) files (for examplenode.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 calledAutomatic Type Acquisition
, you do not have to worry about downloading these type declaration files, VS Code will install them automatically for you.
You can also write code that references modules in other files. For example, inapp.js
we require the./routes/index
module, which exports anExpress.Router
class. If you bring up IntelliSense onindex
, you can see the shape of theRouter
class.
Debug your Express app
You will need to create a debugger configuration filelaunch.json
for your Express application. Click onRun and Debug in theActivity Bar (⇧⌘D (Windows, LinuxCtrl+Shift+D)) and then select thecreate a launch.json file link to create a defaultlaunch.json
file. Select theNode.js environment by ensuring that thetype
property inconfigurations
is set to"node"
. When the file is first created, VS Code will look inpackage.json
for astart
script and will use that value as theprogram
(which in this case is"${workspaceFolder}\\bin\\www
) for theLaunch Program configuration.
{ "version":"0.2.0", "configurations": [ { "type":"node", "request":"launch", "name":"Launch Program", "program":"${workspaceFolder}\\bin\\www" } ]}
Save the new file and make sureLaunch Program is selected in the configuration dropdown at the top of theRun and Debug view. Openapp.js
and set a breakpoint near the top of the file where the Express app object is created by clicking in the gutter to the left of the line number. PressF5 to start debugging the application. VS Code will start the server in a new terminal and hit the breakpoint we set. From there you can inspect variables, create watches, and step through your code.
Deploy your application
If you'd like to learn how to deploy your web application, check out theDeploying Applications to Azure tutorials where we show how to run your website in Azure.
Next steps
There is much more to explore with Visual Studio Code, please try the following topics:
- Node.js profile template - Create a newprofile with a curated set of extensions, settings, and snippets.
- Settings - Learn how to customize VS Code for how you like to work.
- Debugging - This is where VS Code really shines.
- Video: Getting started with debugging in VS Code - Learn how to use debugging in VS Code.
- Node.js debugging - Learn more about VS Code's built-in Node.js debugging.
- Debugging recipes - Examples for scenarios like client-side and container debugging.
- Tasks - Running tasks with Gulp, Grunt and Jake. Showing Errors and Warnings.