Author : Kailash Subramaniyam
Type : Tool
Progress : Complete
https://www.youtube.com/embed/KMdkZQ3sJfs?si=6hSYq6JOryjgCL0m
Why: Node.js is a JavaScript runtime, and npm (Node Package Manager) is used to install tools and dependencies for your extension. VS Code extensions are written in JavaScript or TypeScript, and Node.js powers the build process.
How:
node --version
npm --version
You should see version numbers (e.g., v20.x.x for Node.js and 10.x.x for npm).
Download it from code.visualstudio.com.
Why: Yeoman (yo) is a scaffolding tool that generates project templates, and generator-code is a specific template for VS Code extensions. This saves you time by setting up the boilerplate code.
How: • Open a terminal (e.g., Command Prompt, PowerShell, or Bash). • Run:
npm install -g yo generator-code
yo --version
You should see a version number.
Why: This creates the initial structure of your extension, including configuration files and a sample TypeScript file.