Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabiospampinato/vscode-outdated
A super quick way to update npm dependencies, via a code lens.
https://github.com/fabiospampinato/vscode-outdated
bump dependencies extension npm outdated update vsc vscode
Last synced: 26 days ago
JSON representation
A super quick way to update npm dependencies, via a code lens.
- Host: GitHub
- URL: https://github.com/fabiospampinato/vscode-outdated
- Owner: fabiospampinato
- License: mit
- Created: 2024-03-21T20:03:20.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-04-07T14:52:14.000Z (9 months ago)
- Last Synced: 2024-05-01T12:39:27.019Z (8 months ago)
- Topics: bump, dependencies, extension, npm, outdated, update, vsc, vscode
- Language: TypeScript
- Homepage:
- Size: 365 KB
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
# Outdated
A super quick way to update npm dependencies, via a code lens.
Clicking the code lens will update the dependency's version in the current `package.json` file.
This extension requires `npm-cli` to be installed and it only works for npm dependencies listead in `package.json` files.
## Install
Follow the instructions in the [Marketplace](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-outdated), or run the following in the command palette:
```sh
ext install fabiospampinato.vscode-outdated
```## Usage
It adds 5 commands to the command palette:
```js
'Outdated: Disable' // Disable the code lens
'Outdated: Enable' // Enable the code lens
'Outdated: Toggle' // Enable or disable the code lens
'Outdated: Toggle Badges' // Enable or disable the inline badges
'Outdated: Refresh' // Force refresh the code lens
```## Settings
```js
{
"outdated.enabled": true, // Whether the code lens is enabled or not
"outdated.badges.enabled": true // Whether the inline badges should be rendered or not
}
```## Demo
![Demo](resources/demo.png)
## License
MIT © Fabio Spampinato