@shadowspawn/nvh
Advanced tools
Comparing version 7.0.0 to 7.0.1
@@ -10,2 +10,12 @@ # Changelog | ||
## [7.0.1] (2019-02-11) | ||
## Added | ||
- example instructions to `chown` rather than use `sudo` | ||
## Changed | ||
- dev: detached `nvh` repo from upstream `tj/n` | ||
## [7.0.0] (2019-01-27) | ||
@@ -271,2 +281,4 @@ | ||
[Unreleased]: https://github.com/JohnRGee/nvh/compare/master...develop | ||
[7.0.1]: https://github.com/JohnRGee/nvh/compare/v7.0.0...JohnRGee:v7.0.1 | ||
[7.0.0]: https://github.com/JohnRGee/nvh/compare/v6.3.0...JohnRGee:v7.0.0 | ||
[6.3.0]: https://github.com/JohnRGee/nvh/compare/v6.2.0...JohnRGee:v6.3.0 | ||
@@ -273,0 +285,0 @@ [6.2.0]: https://github.com/JohnRGee/nvh/compare/v6.1.0...JohnRGee:v6.2.0 |
{ | ||
"name": "@shadowspawn/nvh", | ||
"description": "Node Version Helper. Easily install Node.js versions.", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"author": "John Gee", | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/JohnRGee/nvh", |
@@ -11,3 +11,3 @@ # Node Version Helper | ||
Forked from [tj/n](https://github.com/tj/n) with [changes to command syntax](docs/coming-from-n.md), bug fixes, and new features. | ||
Forked from [tj/n](https://github.com/tj/n) with improvements to syntax and error handling, bug fixes, and new features. | ||
@@ -27,5 +27,5 @@ - [Node Version Helper](#node-version-helper) | ||
If you already have `node`, the easiest way to install `nvh` is through `npm`: | ||
If you already have `node`, the easiest way to install `nvh` is with `npm`: | ||
npm install -g @shadowspawn/nvh | ||
npm install --global @shadowspawn/nvh | ||
nvh help | ||
@@ -35,4 +35,9 @@ | ||
One way to bootstrap an install if `npm` is not yet available: | ||
To avoid requiring `sudo` for `nvh` and `npm` global installs, it is recommended you either install to your home directory using `NVH_PREFIX`, or take ownership of the system directories: | ||
sudo mkdir -p /usr/local/nvh | ||
sudo chown -R $(whoami) /usr/local/{nvh,bin,include,lib,share} | ||
If `npm` is not yet available, a way to bootstrap an install: | ||
curl -L https://github.com/JohnRGee/nvh/raw/master/bin/nvh -o nvh | ||
@@ -191,6 +196,6 @@ bash nvh install lts | ||
Three alternatives offering different feature sets are: | ||
Alternatives offering different feature sets are: | ||
- [nvs](https://github.com/jasongin/nvs) Node Version Switcher | ||
- [nvm](https://github.com/creationix/nvm) Node Version Manager | ||
- [nave](https://github.com/isaacs/nave) Virtual Environments for Node | ||
- [nvs](https://github.com/jasongin/nvs) Node Version Switcher (cross-platform) | ||
- [nvm](https://github.com/creationix/nvm) Node Version Manager (Linux and Mac) | ||
- [nvm-windows](https://github.com/coreybutler/nvm-windows) Node.js version manager for Windows |
Sorry, the diff of this file is not supported yet
53190
198