@shadowspawn/nvh
Advanced tools
Comparing version 6.2.0 to 6.3.0
@@ -10,2 +10,18 @@ # Changelog | ||
## [6.3.0] (2019-01-12) | ||
## Added | ||
- `NVH_PRESERVE_NPM` to preserve `npm` by default for installs | ||
- `--no-preserve` to override `NVH_PRESERVE_NPM` | ||
- check for more proxy settings in `nvh doctor`, including `CURL_HOME` and `WGETRC` | ||
## Changed | ||
- `doc` directory name changed back to `docs` (!), because supported by GitHub | ||
## Changed | ||
- be more conservative determining architecture to reduce possibility install incompatible binary | ||
## [6.2.0] (2019-01-02) | ||
@@ -24,3 +40,2 @@ | ||
## Fixed | ||
@@ -247,5 +262,6 @@ | ||
[Unreleased]: https://github.com/JohnRGee/nvh/compare/master...develop | ||
[6.3.0]: https://github.com/JohnRGee/nvh/compare/v6.2.0...JohnRGee:v6.3.0 | ||
[6.2.0]: https://github.com/JohnRGee/nvh/compare/v6.1.0...JohnRGee:v6.2.0 | ||
[6.1.0]: https://github.com/JohnRGee/nvh/compare/v6.0.4...JohnRGee:v6.1.0 | ||
[6.0.3]: https://github.com/JohnRGee/nvh/compare/v6.0.3...JohnRGee:v6.0.4 | ||
[6.0.4]: https://github.com/JohnRGee/nvh/compare/v6.0.3...JohnRGee:v6.0.4 | ||
[6.0.3]: https://github.com/JohnRGee/nvh/compare/v6.0.2...JohnRGee:v6.0.3 | ||
@@ -252,0 +268,0 @@ [6.0.2]: https://github.com/JohnRGee/nvh/compare/v6.0.1...JohnRGee:v6.0.2 |
{ | ||
"name": "@shadowspawn/nvh", | ||
"description": "Node Version Helper. Easily install Node.js versions.", | ||
"version": "6.2.0", | ||
"version": "6.3.0", | ||
"author": "John Gee", | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/JohnRGee/nvh", |
@@ -9,4 +9,6 @@ # Node Version Helper | ||
Forked from [tj/n](https://github.com/tj/n) with [changes to command syntax](doc/coming-from-n.md), bug fixes, and new features. | ||
On Windows the "Windows Subsystem for Linux" is supported, but not "Git BASH". | ||
Forked from [tj/n](https://github.com/tj/n) with [changes to command syntax](docs/coming-from-n.md), bug fixes, and new features. | ||
- [Node Version Helper](#node-version-helper) | ||
@@ -42,3 +44,3 @@ - [Installation](#installation) | ||
nvh install 4.9.1 | ||
nvh install 8.11.3 | ||
nvh i lts | ||
@@ -50,5 +52,5 @@ | ||
node/v4.9.1 | ||
ο node/v6.14.3 | ||
node/v8.11.3 | ||
ο node/v10.15.0 | ||
node/v11.6.0 | ||
@@ -106,3 +108,3 @@ Use up/down arrow keys to select a version, return key to install, q to quit | ||
A `node` install normally includes `npm` as well, but you may wish to preserve an updated `npm` and `npx` leaving them out of the install: | ||
A `node` install normally includes `npm` as well, but you may wish to preserve an updated `npm` and `npx` leaving them out of the install using `--preserve`: | ||
@@ -118,2 +120,6 @@ $ nvh install latest | ||
You can make `--preserve` the default behaviour for installs by setting `NVH_PRESERVE_NPM`: | ||
export NVH_PRESERVE_NPM=1 | ||
## Miscellaneous | ||
@@ -129,3 +135,3 @@ | ||
nvh ls-remote latest | ||
nvh lsr 6 | ||
nvh lsr 10 | ||
nvh lsr --all | ||
@@ -139,3 +145,3 @@ | ||
nvh rm 0.9.4 v0.10.0 | ||
nvh rm 4.9.1 8.15.0 | ||
@@ -159,9 +165,10 @@ Remove all downloaded versions except the version matching the installed version, or all: | ||
See [Environment Variables](doc/environment-variables.md) for more about these settings: | ||
See [Environment Variables](docs/environment-variables.md) for more about these settings: | ||
NVH_MAX_REMOTE_MATCHES | ||
NVH_NODE_MIRROR | ||
NVH_NODE_DOWNLOAD_MIRROR | ||
NVH_MAX_REMOTE_MATCHES | ||
NVH_PRESERVE_NPM | ||
See [Proxy Server](doc/proxy-server.md) for variables and advice for using a proxy server. | ||
See [Proxy Server](docs/proxy-server.md) for variables and advice for using a proxy server. | ||
@@ -176,3 +183,3 @@ https_proxy | ||
The global `npm` packages are not changed by the install, with the | ||
The global `npm` packages are not changed by the install, with the | ||
exception of `npm` itself which by default is part of the `node` install. | ||
@@ -184,7 +191,7 @@ | ||
`nvh` does not: | ||
`nvh` does **not**: | ||
- manage the global npm modules per version of node | ||
- dynamically change the available node as navigate in shell | ||
- run natively on Windows (although there is now the Windows Subsystem for Linux on Windows 10) | ||
- run natively on Windows or in Git BASH | ||
@@ -191,0 +198,0 @@ Three alternatives offering different feature sets are: |
Sorry, the diff of this file is not supported yet
52223
193