mirror of https://github.com/jdx/mise
![]() ### 🐛 Bug Fixes - **(node)** skip gpg verification of sig file not found by [@jdx](https://github.com/jdx) in [#4663](https://github.com/jdx/mise/pull/4663) - **(task)** allow args to be used with tera tests by [@risu729](https://github.com/risu729) in [#4605](https://github.com/jdx/mise/pull/4605) - Fix syntax error on `activate nu` when PATH contains shims by [@atty303](https://github.com/atty303) in [#4349](https://github.com/jdx/mise/pull/4349) ### 🚜 Refactor - **(registry)** use ubi for yamlscript by [@scop](https://github.com/scop) in [#4670](https://github.com/jdx/mise/pull/4670) ### 📚 Documentation - Fix typo in java.md by [@hverlin](https://github.com/hverlin) in [#4672](https://github.com/jdx/mise/pull/4672) ### ◀️ Revert - "chore: temporarily disable bootstrap test" by [@jdx](https://github.com/jdx) in [#4658](https://github.com/jdx/mise/pull/4658) ### 📦️ Dependency Updates - update rust crate ctor to 0.4 by [@renovate[bot]](https://github.com/renovate[bot]) in [#4553](https://github.com/jdx/mise/pull/4553) ### Chore - **(registry)** declare copier by [@looztra](https://github.com/looztra) in [#4669](https://github.com/jdx/mise/pull/4669) - Update to the latest version of ubi by [@autarch](https://github.com/autarch) in [#4648](https://github.com/jdx/mise/pull/4648) - bump expr by [@jdx](https://github.com/jdx) in [#4666](https://github.com/jdx/mise/pull/4666) - added android-sdk by [@jdx](https://github.com/jdx) in [#4668](https://github.com/jdx/mise/pull/4668) - rename mise-php to asdf-php by [@jdx](https://github.com/jdx) in [#4674](https://github.com/jdx/mise/pull/4674) ### New Contributors - @atty303 made their first contribution in [#4349](https://github.com/jdx/mise/pull/4349) - @looztra made their first contribution in [#4669](https://github.com/jdx/mise/pull/4669) |
||
---|---|---|
.cargo | ||
.config | ||
.devcontainer | ||
.github | ||
.idea | ||
aqua-registry@1d5ab75dba | ||
completions | ||
docs | ||
e2e | ||
e2e-win | ||
man/man1 | ||
packaging | ||
schema | ||
scripts | ||
share/fish/vendor_conf.d | ||
src | ||
test | ||
xtasks | ||
.cliffignore | ||
.dockerignore | ||
.editorconfig | ||
.eslintrc.cjs | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.markdown-link-check.json | ||
.markdownlint.json | ||
.markdownlintignore | ||
.pre-commit-config.yaml | ||
.prettierignore | ||
.prettierrc.toml | ||
.shellcheckrc | ||
.yamllint.yml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
Cargo.lock | ||
Cargo.toml | ||
Cross.toml | ||
Dockerfile | ||
LICENSE | ||
README.md | ||
SECURITY.md | ||
age.pub | ||
build.rs | ||
bun.lock | ||
cliff.toml | ||
default.nix | ||
deny.toml | ||
flake.lock | ||
flake.nix | ||
minisign.key.age | ||
minisign.pub | ||
mise.code-workspace | ||
mise.lock | ||
mise.toml | ||
mise.usage.kdl | ||
package.json | ||
pitchfork.toml | ||
registry.toml | ||
settings.toml | ||
tasks.md | ||
tasks.toml | ||
tsconfig.json | ||
zipsign.pub |
README.md
What is it?
- Like asdf (or nvm or pyenv but for any language) it manages dev tools like node, python, cmake, terraform, and hundreds more.
- Like direnv it manages environment variables for different project directories.
- Like make it manages tasks used to build and test projects.
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.
Quickstart
Install mise (other methods here):
$ curl https://mise.run | sh
$ ~/.local/bin/mise --version
2025.3.7 macos-arm64 (a1b2d3e 2025-03-21)
or install a specific a version:
$ curl https://mise.run | MISE_VERSION=v2024.5.16 sh
$ ~/.local/bin/mise --version
2024.5.16 macos-arm64 (8838098 2024-05-14)
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
echo '~/.local/bin/mise activate mise activate pwsh | Out-String | Invoke-Expression' >> ~/.config/powershell/Microsoft.PowerShell_profile.ps1
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