
Using React in Visual Studio Code
React JavaScript tutorial showing IntelliSense, debugging, and code navigation support in the Visual Studio Code editor.
JavaScript in Visual Studio Code
VS Code provides IntelliSense within your JavaScript projects; for many npm libraries such as React, lodash, and express; and for other platforms such as node, serverless, or IoT. See …
TypeScript in Visual Studio Code
Visual Studio Code includes TypeScript language support but does not include the TypeScript compiler, tsc. You will need to install the TypeScript compiler either globally or in your …
Node.js tutorial in Visual Studio Code
The Visual Studio Code editor has great support for writing and debugging Node.js applications. This tutorial takes you from Hello World to a full Express web application.
Visual Studio Code debug configuration
Learn how to configure debugging in Visual Studio Code with launch.json, including attributes, variable substitution, and compound configurations.
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.
jsconfig.json - Visual Studio Code
Visual Studio Code's JavaScript support can run in two different modes: File Scope - no jsconfig.json: In this mode, JavaScript files opened in Visual Studio Code are treated as …
JavaScript Debugging Recipes - Visual Studio Code
Debug server-side JavaScript in Node.js. The Visual Studio Code editor supports debugging Node.js applications via the built-in Node.js debugger. Recipes: Debugging Node.js with …
Using Vue in Visual Studio Code
Vue JavaScript tutorial showing IntelliSense, debugging, and code navigation support in the Visual Studio Code editor.
Debugging in Visual Studio Code
In this tutorial, we will show you how to run and debug a program in VS Code. We'll take a tour of the Run and Debug view, explore some debugging features, and end by setting a breakpoint. …