#DevHack: VS Code extension storage options
This post is over a year old, some of this information may be out of date.
For Front Matter and another VS Code extension which is currently in development, I wanted to understand which options there are for storing data. Data can be anything, for some extensions, it will be settings, for others, it is more complicated sets of data.
In this article, I will give you an overview of all the available storage options and when to use them.
Configuration settings
Configuration settings are not a way to store data for your extension, it only provides a way to how you want the user to use your extension. You can still use this option when you for instance want to manipulate the behavior of your extension from within your user interface.
Each extension can define its own configuration settings, and the user will be able to change it via the settings editor or straight within the JSON file.
Settings can be set and changed on various levels:
- Default
- Global
- Workspace
- Workspace folder level
- Language-specific settings
State storage
All extensions got access to the memento storage which can keep a key/value state for your extension. It works on two levels: global or workspace.
The state is kept whenever you update Visual Studio Code or update the extension.
You can update the global or workspace state via:
await context.globalstate.update(`key`, value)await context.workspaceState.update(`key`, value)
Retrieving state values is achieved similarly:
await context.globalstate.get(`key`)await context.workspaceState.get(`key`)
Secret storage
In some cases, you might want to keep secrets, for instance, connection strings. For some time, you had to use other dependencies, but the VS Code team provided a SecretStorage which is intended to be used to store secrets.
The secret storage is accessible via the VS Code extension context:
// Retrieving a secretawait context.secrets.get(`secretkey`)
// Storing a secretawait context.secrets.store(`secretkey`, `This is the secret`);
Files
If the previous options are not enough, you could still read/write files to the current workspace/solution/project.
Files still give you full flexibility as you won’t be limited to what the VS Code APIs impose.
In order to work with files (read/write), you can use the workspace.fs
API. The workspace file system API exposes the editors’ built-in file system provider.
Related articles
#DevHack: Open custom VSCode WebView panel and focus input
#DevHack: How to rename a file from a VSCode extension
In this DevHack we will learn how to rename a file from a vscode extension. If you are looking for a simple appraoch, this will be the one to use.
#DevHack: language-specific settings in a VSCode extension
Get to know how you can set language-specific settings straight from within the code of your Visual Studio Code extension.
Report issues or make changes on GitHub
Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.
Comments
Let's build together
Manage content in VS Code
Present from VS Code