blob: 2c94e4515825c04787c16badf9abd4834896777b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
```
|