43 lines
894 B
Markdown
43 lines
894 B
Markdown
# mise
|
|
|
|
## Meta
|
|
|
|
```yaml
|
|
name: mise
|
|
repo: https://github.com/jdx/mise
|
|
description: dev tools, env vars, task runner
|
|
```
|
|
|
|
## Install
|
|
|
|
```shell
|
|
$ curl https://mise.run | sh
|
|
$ ~/.local/bin/mise --version
|
|
_ __
|
|
____ ___ (_)_______ ___ ____ ____ / /___ _________
|
|
/ __ `__ \/ / ___/ _ \______/ _ \/ __ \______/ __ \/ / __ `/ ___/ _ \
|
|
/ / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
|
|
/_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
|
|
/_/ by @jdx
|
|
2026.4.9 macos-arm64 (2026-04-11)
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Install Tools
|
|
|
|
```shell
|
|
$ mise use --global node@24 go@1
|
|
$ node -v
|
|
v24.x.x
|
|
$ go version
|
|
go version go1.x.x macos/arm64
|
|
```
|
|
|
|
### Execute Tool
|
|
```shell
|
|
$ mise exec node@24 -- node -v
|
|
mise node@24.x.x ✓ installed
|
|
v24.x.x
|
|
```
|