plugin: npx (#6152)

This commit is contained in:
Pooya Parsa 2017-11-06 18:18:56 +03:30 committed by Robby Russell
commit b53fbc36c1
2 changed files with 24 additions and 0 deletions

17
plugins/npx/README.md Normal file
View file

@ -0,0 +1,17 @@
# NPX Plugin
> npx(1) -- execute npm package binaries. ([more info](https://github.com/zkat/npx))
This plugin automatically registers npx command-not-found handler if `npx` exists in your `$PATH`.
## Setup
- Add plugin to `~/.zshrc`
```bash
plugins=(.... npx)
```
- Globally install npx binary (you need node.js installed too!)
```bash
sudo npm install -g npx
```