https://github.com/giuseppeg/brew-install
👌 Better brew install with support for installing specific versions
https://github.com/giuseppeg/brew-install
Last synced: 3 months ago
JSON representation
👌 Better brew install with support for installing specific versions
- Host: GitHub
- URL: https://github.com/giuseppeg/brew-install
- Owner: giuseppeg
- License: other
- Created: 2019-03-29T13:29:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-29T13:29:38.000Z (over 7 years ago)
- Last Synced: 2025-03-09T22:19:31.849Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 👌 brew-install
A node script to improve the `brew install` experience and allow to install specific versions of packages.
Note this is a very naive implementation so it might not work all the time and it is meant for personal usage only.
## Install
```
npm i -g brew-install
```
## Usage
### Install the latest version of a package
```
brew-install elixir
```
This is an alias for `brew install`.
### Install a specific version of a package
```
brew-install elixir@1.7.1
```
### List all* the avaliable version of a package
```
brew-install --ls elixir
```
* `brew-install` looks at the git history and uses the commit messages to determine the available versions - I warned you that this is a very naive implementation.