Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -3,26 +3,26 @@
> Node.js version manager.
> Switch between NodeJS versions: system, node, 0.10, 0.12, 4.2 etc.
- Install a specific version of NodeJS
- Install a specific version of NodeJS:
`nvm install {{node_version}}`
- Use a specific version NodeJS in the current shell
- Use a specific version NodeJS in the current shell:
`nvm use {{node_version}}`
- Set the default NodeJS version
- Set the default NodeJS version:
`nvm alias default {{node_version}}`
- List all available NodeJS versions and print the default one
- List all available NodeJS versions and print the default one:
`nvm list`
- Run a specific version NodeJS REPL
- Run a specific version NodeJS REPL:
`nvm run {{node_version}} --version`
- Run app in a specific version of NodeJS
- Run app in a specific version of NodeJS:
`nvm exec {{node_version}} node {{app.js}}`