Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        

# Outdated


Logo

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