123 releases (34 stable)

1.25.2 Mar 11, 2024
1.24.0 Feb 11, 2024
1.21.0 Dec 29, 2023
1.16.0 Nov 8, 2023
0.2.23 Nov 18, 2016

#56 in Development tools

Download history 4339/week @ 2024-01-03 3958/week @ 2024-01-10 3845/week @ 2024-01-17 3180/week @ 2024-01-24 3997/week @ 2024-01-31 4224/week @ 2024-02-07 3974/week @ 2024-02-14 3483/week @ 2024-02-21 4107/week @ 2024-02-28 7235/week @ 2024-03-06 5585/week @ 2024-03-13 6861/week @ 2024-03-20 5351/week @ 2024-03-27 7562/week @ 2024-04-03 7505/week @ 2024-04-10 6895/week @ 2024-04-17

28,277 downloads per month
Used in todors

CC0 license

435KB
15K 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

~11–25MB
~358K SLoC