🤏 Smol Node Manager
Terminal: kitty | Prompt: starship
.nvmrc
, .node-version
and package.json
cargo
(Linux/macOS/Windows)sh
cargo install snm
yay
or pamac
(Arch Linux)Why snm is available for Arch? Because I love Arch Linux
```sh
yay
yay -S snm
pamac
pamac build snm ```
Check out the Release page for prebuild binaries for snm
, available for different operating systems.
sh
curl -fsSL https://git.io/JLFnA | bash
Available Params
--install-dir
: Set a custom directory for binary installation. Defaults to $HOME/.snm
--skip-shell
: Skip appending shell specific loader to the $SHELL
config file.NOTE:
snm
uses symlinks underneath to manage aliases. So, If you are using Windows make sure you have enabled Developer Mode or your user has permission to create symlinks. You can read more here
Add the following line to your ~/.bashrc
bash
eval "$(snm env bash)"
Add the following line to your ~/.zshrc
zsh
eval "$(snm env zsh)"
Add the following line to your ~/.config/fish/config.fish
fish
snm env fish | source
Add the following line to your ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
bash
snm env pwsh | Out-String | Invoke-Expression
You can find more about the powershell profile here
| Options | Env Variable | Description |
| -------------------- | ---------------------- | --------------------------------------------------- |
| --snm-dir
| SNM_DIR
| Directory where the all files and aliases are saved |
| --node-dist-mirror
| SNM_NODE_DIST_MIRROR
| Nodejs download mirror |
Example:
sh
snm [--snm-dir="~/.something/else"] [--node-dist-mirror="https://myrelease.com"]
| Flags | Description |
| ----------- | ------------------------- |
| --no-use
| Only download the release |
| --version
| Prints the version |
| --help
| Prints the help doc |
snm install <version|alias>
: Install Nodejs with the provided version or lts codename```sh
snm install 14
snm install lts/fermium
```
snm uninstall [version|alias]
: Removes the installed NodejsIf given an alias like
ten
orlts-fermium
then it will remove the version which the alias is pointing at and all the aliases which are pointing to the same version. Also, uninstalling a version will throw an error, if multiple installation is found in the same semver range or if the provided version/alias is active, add--force
flag to override this behavior.
```sh
snm uninstall 14
snm uninstall lts/fermium
snm uninstall --force 16 ```
snm use [version]
: Change Nodejs version, Supports .nvmrc
and .node-version
```sh
snm use 10
.nvmrc
or .node-version
, if snm use ```
snm lts
: Installs the recent lts release
snm latest
: Installs the recent current release
snm ls
: List all the local downloaded versions with their aliases
snm ls-remote [version]
: List remote Node.js versions
```sh
snm ls-remote 14
snm ls-remote 14 --all
snm ls-remote 14 --count 25 ```
snm alias <version> <name>
: Alias a version to a common name```sh
snm alias 10 ten ```
snm unalias [name]
: Removes aliases```sh
ten
snm unalias ten
snm unalias --all ```
snm exec <version>
: Executes a command within snm context with the modified PATH```sh
snm exec 10 -- node -v
snm exec 10 -- yarn start ```
snm purge
: Remove all the installed versions and aliases. Except the active version.```
snm purge
snm purge --all ```
snm which <version>
: Prints path for the downloaded Nodejs version
snm help <subcommand>
or snm <subcommand> --help
: Help doc for the subcommand
NOTE: This is a small part of help doc. Please make sure to read the inbuilt help
snm
binary has inbuilt completions supports. Please follow the instruction to generate completions according to your shell.
sh
snm completions zsh
sh
snm completions bash
sh
snm completions fish
sh
snm completions pwsh
After generating the completions, please follow your shell instructions on how to load and use them.
PRs are always welcome. You can help me by adding more tests :).
First, You need to install rust toolchain via rustup.
Minimum Supported Rust Version (MSRV): 1.54.0
```sh git clone https://github.com/numtostr/snm
cd ./snm ```
```sh
cargo build
cargo build --release ```
```sh
snm --help
cargo run -- --help
snm lsr 14
cargo run -- lsr 14 ```
This project would not be possible without these awesome projects.