📝 Edit page
➕ Add page
VSIX format
An exported form of a VS Code extension
The VSCE command is used to export an extension as .vsix
file. This extension is VS Code’s format for bundling extensions as single compressed archive file.
That file can be used as follows:
- Install locally
- Use the Install flow to install globally, without having to worry about unzipping or moving the package.
- Install by hand
- Unzip the package e.g. using
tar
orunzip
. - Move the folder
~/.vscode/extensions/
for your user. Or./.vscode/extensions/
to scope it to just one repo.
- Unzip the package e.g. using
- Share with friends
- Send your file by Slack/Email along with the appropriate Install command.
- Download from GitHub (such as if the file is uploaded to a GH Release)
- Publish to the VS Code marketplace to share publicly
- See the Publish guide.