# vscode-extension **Repository Path**: dolphindb/vscode-extension ## Basic Information - **Project Name**: vscode-extension - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-06-18 - **Last Updated**: 2025-10-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DolphinDB VS Code Extension
## Use
For information on how to use this extension, see [official documentation](https://docs.dolphindb.cn/en/Tutorials/vscode_extension.html) at the DolphinDB website.
## Development Instructions
Open the link below and install the latest version of node.js and browser on your machine.
https://nodejs.org/en/download/current
```shell
# Install pnpm package manager
npm install -g pnpm
git clone https://github.com/dolphindb/vscode-extension.git
cd vscode-extension
# Recommended registry configuration for domestic networks
pnpm config set registry https://registry.npmmirror.com
# Install project dependencies
pnpm install
# Refer to scripts in package.json
# Start development
# You need to uninstall the installed dolphindb plugin first
pnpm run dev
# Format code and automatically fix code errors
pnpm run fix
# Scan entries
pnpm run scan
# Manually complete untranslated entries
# Run scan again to update the dictionary file dict.json
pnpm run scan
# Build
# pnpm run build
```