A version manager for all binaries.
NOTICE: This is a proof of concept and currently has no automated tests—extremely unstable. It is not recommended to use it yet as there will likely be many breaking changes.
bvm use deno path
).bvm
via cargo—cargo install bvm
.C:\Users\<user-name>\AppData\Local\bvm\bvm\shims
~/.local/share/bvm/shims
jsonc
{
"binaries": [
"https://bvm.land/deno/1.3.1.json",
"https://bvm.land/dprint/0.9.0.json"
]
}
bvm install
bvm install
Downloads & installs the binaries in the current configuration file and associates them on the path with bvm.
bvm install [url]
Installs a binary at the specified manifest file.
```
bvm install https://bvm.land/deno/1.3.1.json ```
bvm use [binary-name or owner-name/binary-name] [version]
Uses the specified binary name and version globally.
The binary and version must have been previously installed.
```
bvm use deno 1.3.1 bvm use denoland/deno 1.3.1 bvm use name-stealer/deno 2.0.0 ```
bvm resolve [binary name]
Resolves the executable path of the specified binary based on the current working directory.
This command is used by the created shell/batch files (shims) to tell how to resolve the file.
```
bvm resolve deno
```
bvm uninstall [binary-name or owner-name/binary-name] [version]
Uninstalls the specified binary name and version.
```
bvm uninstall deno 1.2.0 bvm uninstall denoland/deno 1.3.1 bvm uninstall name-stealer/deno 2.0.0 ```
At the moment, it looks like this:
json
{
"schemaVersion": 1,
"name": "deno",
"owner": "denoland",
"version": "1.3.1",
"windows": {
"archive": "https://github.com/denoland/deno/releases/download/v1.3.1/deno-x86_64-pc-windows-msvc.zip",
"binaryPath": "deno.exe",
"postExtract": "# this is the post extract script where you can run some commands if necessary to cause additional setup"
},
"linux": {
"archive": "https://github.com/denoland/deno/releases/download/v1.3.1/deno-x86_64-unknown-linux-gnu.zip",
"binaryPath": "deno"
},
"mac": {
"archive": "https://github.com/denoland/deno/releases/download/v1.3.1/deno-x86_64-apple-darwin.zip",
"binaryPath": "deno"
}
}
High priority:
Low effort:
bvm list
- Lists the installed binaries.bvm clear-url-cache
- Clear the url caches, but not the binary caches.bvm resolve
(ex. bvm resolve deno 1.3.1
)--force
on bvm install <url>
if already installed.jsonc
{
"binaries": [{
"manifest": "http://localhost:8000/deno-1.3.1.json",
"alias": "deno-1.3.1"
}]
}
bvm init
Medium effort:
jsonc
{
"binaries": [{
"manifest": "http://localhost:8000/deno-1.3.1.json",
"version": "^1.3.0"
}]
}
deno2
)
bvm exec deno 1.2.0 -V
or perhaps at the shim level deno -V --bvm-use-version 1.2.0
... or maybe this should use bvm resolve
somehow.Large effort:
bvm install [binary name] [version]
or just bvm install [binary name]
.bvm upgrade <binary name>
- Upgrade to the latest version (requires a "binary list" to be set—not implemented)Probably unnecessary complexity:
bvm use <url>
- To use a specific version of a binary globally via a url.npm run <script-name>
? Or is that out of scope?~~ Yes. I think there should be another tool people can install with bvm that does this. This tool should be very simple. There should definitely be pre and post install scripts though.bvm use <binary name> <executable file path>
for using the executable at the specified file path.