About 262 results
Open links in new tab
  1. Node.js tutorial in Visual Studio Code

    Node.js is the runtime and npm 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 …

  2. Node.js debugging in VS Code - Visual Studio Code

    Setting up a project for Node.js debugging is straightforward with VS Code providing appropriate launch configuration defaults and snippets. There are a few ways you can debug your Node.js programs in VS Code: Use auto attach to debug processes you run in …

  3. Node.js in a container - Visual Studio Code

    Node.js in a container. In this guide you will learn how to: Create a Dockerfile file for an Express Node.js service container; Build, run, and verify the functionality of the service; Debug the service running within a container; Prerequisites. Both Docker and the VS Code Docker extension must be installed as described in the overview; Node.js ...

  4. Visual Studio Code debug configuration

    VS Code stores debugging configuration information in a launch.json file located in the .vscode folder in your workspace (project root folder), or in your user settings or workspace settings. The following snippet describes a sample configuration for debugging a Node.js application:

  5. Terminal Basics - Visual Studio Code

    The integrated terminal can run commands such as mkdir and git just like a standalone terminal. You can open a terminal as follows: From the menu, use the Terminal > New Terminal or View > Terminal menu commands.

  6. Code editing in Visual Studio Code

    Install the Node.js runtime to execute JavaScript code. Find Node.js for your platform at https://nodejs.org; Check your Node.js installation. From a terminal or command prompt, type node --version; Create new file. File > New File (⌘N (Windows, Linux Ctrl+N)) Create a simple "Hello world" console application called app.js.

  7. Terminal Shell Integration - Visual Studio Code

    To manually install shell integration, the VS Code shell integration script needs to run during your shell's initialization. Where and how to do this depends on the shell and OS you're using. When using manual install it's recommended to set terminal.integrated.shellIntegration.enabled to false , though not mandatory.

  8. JavaScript in Visual Studio Code

    Node.js - A walkthrough to create an Express Node.js application. TypeScript - VS Code has great support for TypeScript, which brings structure and strong typing to your JavaScript code. Common questions

  9. JavaScript extensions for VS Code - Visual Studio Code

    Learn more about installing and integrating JavaScript and Node.js extensions in the Visual Studio Code editor.

  10. Debug code with Visual Studio Code

    VS Code has built-in support for JavaScript, TypeScript, and Node.js debugging. Define a debugging configuration for your project. For simple applications, VS Code tries to run and debug the currently active file.

Refresh