Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Git History | 13,254 | 2 months ago | 7 | March 19, 2019 | 76 | mit | JavaScript | |||
Quickly browse the history of a file from any git repository | ||||||||||
Nb | 5,352 | a month ago | 281 | June 12, 2022 | 98 | agpl-3.0 | Shell | |||
CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script. | ||||||||||
Mirrord | 2,491 | 8 hours ago | 5 | March 12, 2022 | 142 | mit | Rust | |||
Connect your local process and your cloud environment, and run local code in cloud conditions. | ||||||||||
Xteko | 1,377 | 9 months ago | 3 | JavaScript | ||||||
JSBox demos | ||||||||||
Nx Console | 1,154 | 5 days ago | 26 | mit | TypeScript | |||||
Nx Console is the user interface for Nx & Lerna. | ||||||||||
Vscode Docker | 1,071 | 9 hours ago | 71 | other | TypeScript | |||||
Docker Extension for Visual Studio Code | ||||||||||
Vscode Jupyter | 1,033 | 13 hours ago | 4 | December 26, 2021 | 563 | mit | TypeScript | |||
VS Code Jupyter extension | ||||||||||
Hover | 923 | 2 | 2 days ago | 69 | January 05, 2022 | 4 | bsd-3-clause | Go | ||
Hover helps developers to release Flutter applications on desktop. | ||||||||||
Helm Intellisense | 870 | 4 months ago | 6 | mit | TypeScript | |||||
Extension for Visual Studio Code - Intellisense in helm-templates from the values.yaml | ||||||||||
Touchwx | 709 | 5 years ago | 29 | mit | CSS | |||||
小程序组件化解决方案。官网:https://www.wetouch.net/wx.html |
IMPORTANT: This extension has been deprecated. Support for running npm scripts is now provided by VS Code. You can run npm scripts as tasks using task auto detection or from the npm scripts explorer.
This extension supports running npm scripts defined in the package.json
file.
Commands for running scripts are available the npm
category.
npm run-script
) defined in the package.json
by picking a script
defined in the scripts
section of the package.json
.package.json
fileThe scripts can be run either in the integrated terminal or an output window.
Support for Macbook Pro touch bar. You can run the following commands:
npm.runInTerminal
defines whether the command is run
in a terminal window or whether the output form the command is shown in the Output
window. The default is to show the output in the terminal.npm.includeDirectories
define additional directories that include a package.json
.npm.useRootDirectory
define whether the root directory of the workspace should be ignored, the default is false
.npm.runSilent
run npm commands with the --silent
option, the default is false
.npm.bin
custom npm bin name, the default is npm
.npm.enableTouchbar
Enable the npm scripts on macOS touchbar.npm.oldKeybindings.enable
Enable the original npm keybindings that start with cmd/ctrl R
{
"npm.runInTerminal": false,
"npm.includeDirectories": [
"subdir1/path",
"subdir2/path"
]
}
This extension originally defined a chording keyboard shortcut for the R
key. This has resulted in conflicts with the keybindings provided by VS Code and has caused frustration. To avoid these conflicts the keybindings have been changed to use the existing chording shortcut starting with the K
key. The following table shows the default key bindings that can always be changed, see the customization documentation.
Command | Old | New |
---|---|---|
Rerun last script | CMD+R R |
CMD+K L |
Select a script to run | CMD+R SHIFT+R |
CMD+K SHIFT+R |
Terminate the running script | CMD+R SHIFT+X |
CMD+K SHIFT+X |
Run the test script | CMD+R T |
CMD+K T |
If you prefer the old keybindings starting with R
you can define the setting npm.oldKeybindings.enable
to true
.