]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/node/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / node / README.md
1 # node plugin
2
3 This plugin adds `node-docs` function that opens specific section in [Node.js](https://nodejs.org)
4 documentation (depending on the installed version).
5
6 To use it, add `node` to the plugins array of your zshrc file:
7
8 ```zsh
9 plugins=(... 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 ```