110 releases (21 stable)
1.16.0 | Nov 8, 2023 |
---|---|
1.14.0 | Jun 2, 2023 |
1.13.0 | Jan 25, 2023 |
1.9.0 | Nov 25, 2022 |
0.2.23 | Nov 18, 2016 |
#51 in Development tools
14,706 downloads per month
Used in todors
410KB
14K
SLoC
just
is a handy way to save and run project-specific commands.
Commands are stored in a file called justfile
or Justfile
with syntax inspired by make
:
build:
cc *.c -o main
# test everything
test-all: build
./test --all
# run a specific test
test TEST: build
./test --test {{TEST}}
just
produces detailed error messages and avoids make
's idiosyncrasies, so debugging a justfile is easier and less surprising than debugging a makefile.
It works on Linux, MacOS, and Windows.
Read more on GitHub.
Dependencies
~7–20MB
~253K SLoC