https://github.com/ngyewch/asdf-helper
Helper tool for asdf.
https://github.com/ngyewch/asdf-helper
asdf
Last synced: 6 months ago
JSON representation
Helper tool for asdf.
- Host: GitHub
- URL: https://github.com/ngyewch/asdf-helper
- Owner: ngyewch
- License: mit
- Created: 2022-08-22T07:40:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-04T03:12:52.000Z (about 2 years ago)
- Last Synced: 2025-03-26T08:51:44.701Z (7 months ago)
- Topics: asdf
- Language: Go
- Homepage:
- Size: 180 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asdf-helper
[](https://github.com/ngyewch/asdf-helper/actions/workflows/build.yml)
Helper tool for [asdf](https://asdf-vm.com/).
## Installation
asdf-helper can be installed via [asdf](https://asdf-vm.com/). See https://github.com/ngyewch/asdf-helper-plugin
## Features
### Install (recursive)
```
asdf-helper install
```asdf plugins are also installed automatically. Custom/unlisted plugins may be specified via a `.plugin-versions` file in the same directory as `.tool-versions`.
Sample `.plugin-versions`
```
ansible-core https://github.com/amrox/asdf-pyapp.git
earthly https://github.com/YR-ZR0/asdf-earthly
```### Latest version (recursive)
```
asdf-helper latest
```Version constraints can be specified in `.tool-versions`. See https://github.com/Masterminds/semver for more details.
```
nodejs 16.17.1 # (constraint ^16)
java openjdk-11.0.2 # (constraint ^11)
golang 1.17.13 # (constraint >= 1.17, < 1.19)
```