mise ls-remote
- Usage:
mise ls-remote [--all] [-J --json] [TOOL@VERSION] [PREFIX] - Source code:
src/cli/ls_remote.rs
List runtime versions available for install.
Note that the results may be cached, run mise cache clean to clear the cache and get fresh results.
Arguments
[TOOL@VERSION]
Tool to get versions for
[PREFIX]
The version prefix to use when querying the latest version same as the first argument after the "@"
Flags
--all
Show all installed plugins and versions
-J --json
Output in JSON format (includes version metadata like created_at timestamps when available)
Examples:
$ mise ls-remote node
18.0.0
20.0.0
$ mise ls-remote node@20
20.0.0
20.1.0
$ mise ls-remote node 20
20.0.0
20.1.0
$ mise ls-remote github:cli/cli --json
[{"version":"2.62.0","created_at":"2024-11-14T15:40:35Z"},{"version":"2.61.0","created_at":"2024-10-23T19:22:15Z"}]