Install any Babashka script or project with one command.
$ bbin install io.github.babashka/neil
{:lib io.github.babashka/neil,
:coords
{:git/url "https://github.com/babashka/neil",
:git/tag "v0.1.45",
:git/sha "0474d4cb5cfb0207265a4508a0e82ae7a293ab61"}}
$ neil --version
neil 0.1.45
$ bbin install https://gist.githubusercontent.com/rads/da8ecbce63fe305f3520637810ff9506/raw/25e47ce2fb5f9a7f9d12a20423e801b64c20e787/portal.clj
{:coords {:bbin/url "https://gist.githubusercontent.com/rads/da8ecbce63fe305f3520637810ff9506/raw/25e47ce2fb5f9a7f9d12a20423e801b64c20e787/portal.clj"}}
# Open a Portal window with all installed scripts
$ portal <(bbin ls)
📦 See the Scripts and Projects wiki page for a list of CLI tools from the community. This list is just a starting point — any existing Babashka script or project can be installed out-of-the-box!
📚 See the Usage and CLI docs for more examples of what bbin
can do.
1. Install via brew
:
brew install babashka/brew/bbin
2. Add ~/.babashka/bbin/bin
to PATH
:
echo 'export PATH="$PATH:$HOME/.babashka/bbin/bin"' >> ~/.$(basename $SHELL)rc && exec $SHELL
1. Install bbin
CLI:
scoop bucket add scoop-clojure https://github.com/littleli/scoop-clojure
scoop install bbin
The Scoop package will automatically update your Path
with %HOMEDRIVE%%HOMEPATH%\.babashka\bbin\bin
, but you will have to restart your terminal for this to take effect.
Click here for manual installation instructions.
# Install a script from a qualified lib name
$ bbin install io.github.babashka/neil
$ bbin install io.github.rads/watch --latest-sha
$ bbin install org.babashka/http-server --mvn/version 0.1.11
# Install an auto-generated CLI from a namespace of functions
$ bbin install io.github.borkdude/quickblog --tool --ns-default quickblog.api
# Install a script from a URL
$ bbin install https://gist.githubusercontent.com/rads/da8ecbce63fe305f3520637810ff9506/raw/25e47ce2fb5f9a7f9d12a20423e801b64c20e787/portal.clj
$ bbin install https://github.com/babashka/http-server/releases/download/v0.1.11/http-server.jar
# Install a script from a local file
$ bbin install foo.clj
$ bbin install http-server.jar
# Install a script from a local root (with no lib name)
$ git clone https://github.com/babashka/bbin.git ~/src/bbin
$ bbin install ~/src/bbin --as bbin-dev
# Install a script from a local root (with lib name)
$ bbin install io.github.babashka/bbin --local/root ~/src/bbin --as bbin-dev
# Remove a script
$ bbin uninstall watch
# Show installed scripts
$ bbin ls
# Show the bin path
$ bbin bin
# TODO: Not implemented yet, but possibly supported in the future
$ bbin install https://gist.github.com/1d7670142f8117fa78d7db40a9d6ee80.git
$ bbin install git@gist.github.com:1d7670142f8117fa78d7db40a9d6ee80.git
Install a script
- By default, scripts will be installed to
~/.babashka/bbin/bin
- If
$BABASHKA_BBIN_DIR
is set, then use$BABASHKA_BBIN_DIR
(explicit override) - If
$XDG_DATA_HOME
is set, then use$XDG_DATA_HOME/.babashka/bbin/bin
(Freedesktop conventions)
- If
- Each bin script is a self-contained shell script that fetches deps and invokes
bb
with the correct arguments. - The bin scripts can be configured using the CLI options or the
:bbin/bin
key inbb.edn
- See the FAQ for additional info on setting up your code to work with bbin
Example bb.edn
Config:
{:bbin/bin {neil {:main-opts ["-f" "neil"]}}}
Supported Options:
Note: bbin
will throw an error if conflicting options are provided, such as using both --git/sha
and --mvn/version
at the same time.
If no --git/tag
or --git/sha
is provided, the latest Git tag from GitHub will be used.
--as
- The name of the script to be saved in the
bbin bin
path
- The name of the script to be saved in the
--git/sha
- The SHA for a Git repo
--git/tag
- The tag for a Git repo
--git/url
- The URL for a Git repo
--latest-sha
- If provided, find the latest SHA from GitHub
--local/root
- The path of a local directory containing a
deps.edn
file
- The path of a local directory containing a
--main-opts
- The provided options (EDN format) will be passed to the
bb
command-line when the installed script is run - By default,
--main-opts
will be set to["-m" ...]
, inferring the main function from the lib name - For example, if you provide a lib name like
io.github.rads/watch
,bbin
will inferrads.watch/-main
- Project authors can provide a default in the
:bbin/bin
key inbb.edn
- The provided options (EDN format) will be passed to the
--mvn/version
- The version of a Maven dependency
--ns-default
- The namespace to use to find functions (tool mode only)
- Project authors can provide a default in the
:bbin/bin
key inbb.edn
--tool
- If this option is provided, the script will be installed using tool mode
- When enabled, the installed script acts as an entry point for functions in a namespace, similar to
clj -T
- If no function is provided, the installed script will infer a help message based on the function docstrings
Remove a script
List installed scripts
Display bbin bin folder
- The default folder is
~/.babashka/bbin/bin
Display bbin version
Display bbin help
If you'd like to contribute to bbin
, you're welcome to create issues for ideas, feature requests, and bug reports.
bbin
is released under the MIT License.