From 98fd9b1bc1cee1accba3a319ad464da28e4baf7a Mon Sep 17 00:00:00 2001 From: trivernis Date: Sat, 21 Jan 2023 19:12:23 +0100 Subject: [PATCH] Add README --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4910034 --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +# nenv + +Node environment manager written in rust. + + +## Installation + +Figure out how to install it yourself (for now). +Add the nenv `bin` directory to your PATH variable. + +## Usage + +### Install node versions + +```sh +# install the latest available node version +nenv install latest + +# install the latest lts version +nenv install lts + +# install the latest 14.x.x version. +nenv install 14 +``` + +### Change the system-wide default version + +```sh +nenv default latest +``` + +### Refresh installed binaries and upstream versions + +```sh +nenv refresh +``` + + +## License + +GPL-3.0 \ No newline at end of file