122 stable releases

2024.7.4 Jul 19, 2024
2024.7.3 Jul 14, 2024
2024.6.6 Jun 20, 2024
2024.5.28 May 31, 2024
2024.1.35 Jan 31, 2024

#10 in Command line utilities

Download history 677/week @ 2024-04-04 597/week @ 2024-04-11 596/week @ 2024-04-18 1648/week @ 2024-04-25 1358/week @ 2024-05-02 3304/week @ 2024-05-09 1935/week @ 2024-05-16 1823/week @ 2024-05-23 2114/week @ 2024-05-30 973/week @ 2024-06-06 809/week @ 2024-06-13 564/week @ 2024-06-20 276/week @ 2024-06-27 679/week @ 2024-07-04 749/week @ 2024-07-11 459/week @ 2024-07-18

2,202 downloads per month

MIT license

1MB
25K SLoC

mise-logo
mise-en-place

Crates.io GitHub GitHub Workflow Status Codacy coverage (branch) Discord

The front-end to your dev env. (formerly called "rtx")

What is it?

30 Second Demo

The following shows using mise to install different versions of node. Note that calling which node gives us a real path to node, not a shim.

demo

Quickstart

Install mise (other methods here):

$ curl https://mise.run | sh
$ ~/.local/bin/mise --version
mise 2024.7.4

or install a specific a version:

$ curl https://mise.run | MISE_VERSION=v2024.5.16 sh
$ ~/.local/bin/mise --version
mise 2024.7.4

Hook mise into your shell (pick the right one for your shell):

# note this assumes mise is located at ~/.local/bin/mise
# which is what https://mise.run does by default
echo 'eval "$(~/.local/bin/mise activate bash)"' >> ~/.bashrc
echo 'eval "$(~/.local/bin/mise activate zsh)"' >> ~/.zshrc
echo '~/.local/bin/mise activate fish | source' >> ~/.config/fish/config.fish

Install a runtime and set it as the global default:

$ mise use --global node@20
$ node -v
v20.0.0

Full Documentation

See mise.jdx.dev

Dependencies

~47–84MB
~1.5M SLoC