• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..21-Dec-2021-

README.mdH A D21-Dec-2021431 2014

node.plugin.zshH A D21-Dec-2021241 76

README.md

1# node plugin
2
3This plugin adds `node-docs` function that opens specific section in [Node.js](https://nodejs.org)
4documentation (depending on the installed version).
5
6To use it, add `node` to the plugins array of your zshrc file:
7
8```zsh
9plugins=(... node)
10```
11
12## Usage
13
14```zsh
15# Opens https://nodejs.org/docs/latest-v10.x/api/fs.html
16$ node-docs fs
17# Opens https://nodejs.org/docs/latest-v10.x/api/path.html
18$ node-docs path
19```
20