Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 583 Bytes

File metadata and controls

17 lines (9 loc) · 583 Bytes

Running Node.js application in VSCode

VS Code has an integrated terminal which you can use to run shell commands. You can run Node.js directly from there.

Step-by-step guide

  • Go to menu View -> Terminal

    ViewTerminalMenu

  • This will open a integrated terminal which you can use to run shell commands.

    IntegratedTerminal

  • You can run Node.js directly by using the command npm start or node <starting JS file-name>

    RunningNodeJSApplication