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

Download history 1776/week @ 2023-08-12 2106/week @ 2023-08-19 2371/week @ 2023-08-26 2578/week @ 2023-09-02 3339/week @ 2023-09-09 2752/week @ 2023-09-16 2592/week @ 2023-09-23 3569/week @ 2023-09-30 3590/week @ 2023-10-07 3363/week @ 2023-10-14 2818/week @ 2023-10-21 2956/week @ 2023-10-28 3647/week @ 2023-11-04 3071/week @ 2023-11-11 3791/week @ 2023-11-18 3695/week @ 2023-11-25

14,706 downloads per month
Used in todors

CC0 license

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