Demo Extension
A simple VS Code extension that demonstrates basic extension functionality.
Features
- Hello World Command: Displays a friendly "Hello World" message in VS Code
Installation
- Clone this repository
- Run
pnpm install to install dependencies
- Press
F5 to open a new VS Code window with the extension loaded
Usage
Open the Command Palette (Cmd+Shift+P on macOS or Ctrl+Shift+P on Windows/Linux) and search for:
Hello World - Displays a greeting message
Development
Requirements
- VS Code ^1.104.0
- Node.js 22.x
- pnpm
Building
# Compile the extension
pnpm run compile
# Watch for changes
pnpm run watch
# Package for production
pnpm run package
Testing
# Run tests
pnpm test
# Run type checking
pnpm run check-types
# Run linter
pnpm run lint
Project Structure
src/extension.ts - Main extension code
package.json - Extension manifest
tsconfig.json - TypeScript configuration
Release Notes
0.0.1
Initial release with basic Hello World command.
| |