Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

VS Code is a cross-platform, multi-language support code editor. With inline intellisenseIntelliSense, debugging support for multiple languages, inline git support and an extensible API for plugins, it's the editor that has no boundaries.

It's inline debugging support is perfect for Profound.js as it provides the functionality to start and stop Profound.js locally, set breakpoints, and see the value values of variables at runtime, all through a friendly UIuser interface.

To download and read more about VS Code, check out the following links:

...

Code Block
languagejavascript
titlelaunch.json file in VS Code
        {
            "name": "Launch",
            "type": "node",
            "request": "launch",
            "program": "${workspaceRoot}/start.js",
            "stopOnEntry": false,
            "args": [],
            "cwd": "${workspaceRoot}",
            "runtimeArgs": [
                "--nolazy"
            ],
            "env": {
                "NODE_ENV": "development"
            },
            "console": "internalConsole",
            "sourceMaps": false
        }

...