Visual Studio Code - Node.js app

Card Puncher Data Processing

About

Node.js app development in VsCode

Visual Studio Code support natively Node.js app.

Debug

Example of Launch.json file to debug an Node script

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${workspaceRoot}/app.js"
        }
    ]
}

where app.js is a node.js app. Example:

var name = "nicolas";
console.log(name)

Documentation / Reference





Discover More
Card Puncher Data Processing
Visual Studio Code (VsCode)

Visual Studio Code is an electron app based on the Monaco HTML Editor. There is no notion of a project but the notion of component (extension). yeoman can help create a project structure....



Share this page:
Follow us:
Task Runner