🤏 Smol Node Manager

Installation

From script

TODO: add a bash script

From package managers

sh cargo install snm

Why snm is available for Arch? Because I love Arch Linux

```sh

Using yay

yay -S snm

Using pamac

pamac build snm ```

From binaries

Check out the Release page for prebuild binaries for snm, available for different operating systems.

Shell

Add the following line to your ~/.bashrc

bash eval "$(snm eval bash)"

Add the following line to your ~/.zshrc

zsh eval "$(snm eval 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

Contributing

PRs are always welcome. You can help me by adding more tests 🤞.

First, You need to install rust toolchain via rustup.

```sh git clone https://github.com/numtostr/snm

cd ./snm ```

```sh

For debug build

cargo build

For release build

cargo build --release ```

```sh

Same as running snm --help

cargo run -- --help

Same as running snm lsr 14

cargo run -- lsr 14 ```