Installation
The simplest way to install the SimpleLogs extension is directly from the VS Code Marketplace.
From VS Code Marketplace
Click the button above or use this direct install command in VS Code:
ext install simpleit.simplelogs
Alternatively, you can:
- Open VS Code
- Click on the Extensions icon in the Activity Bar (or press
Ctrl+Shift+X
) - Search for "SimpleLogs"
- Look for the extension published by "simpleit"
- Click the Install button
From VSIX File
If you have a .vsix
file of the extension:
- Open VS Code
- From the command palette (
Ctrl+Shift+P
orCmd+Shift+P
), run Extensions: Install from VSIX... - Locate and select the
.vsix
file - Reload VS Code when prompted
Alternatively, you can use the following command:
code --install-extension simplelogs-1.0.0.vsix
From Source
If you want to build the extension from source:
Clone the repository:
git clone https://github.com/simplelogs/simple-logs.git
Install dependencies:
cd simplelogs
npm installBuild the extension:
npm run compile
Package the extension:
npm run package
Install the packaged extension:
code --install-extension simplelogs-1.0.0.vsix
Post-Installation
After installation, you'll see a new SimpleLogs icon in the Activity Bar. Click it to open the SimpleLogs view and start monitoring your logs.
Next Steps
Now that you have SimpleLogs installed, check out the Features page to learn more about what you can do with the extension.