Gitrend
🤖

Just - Your Command Runner Bliss

Rust 2026/1/27
Summary
Tired of complicated Makefiles or long script commands? Just is a modern, simple, and powerful command runner written in Rust to streamline your project tasks.

Overview: Why is this cool?

Hey fellow developers! Don’t you just hate it when you jump into a new project (or even an old one!) and you’re immediately hit with a wall of obscure Makefile commands, or a package.json script section that scrolls for days? You know the drill: “Was it npm run build:prod or yarn build --release?” And then there’s the classic Makefile tab-vs-space debate that haunts your dreams. Ugh!

What if I told you there’s a ridiculously elegant, super-fast, and incredibly simple solution that’s about to make your project command woes vanish? Enter Just – your new best friend for running project-specific commands, built with the blazing speed and reliability of Rust!

Forget the ancient incantations of Make. Just offers a refreshingly intuitive syntax, cross-platform compatibility, and a focus on developer ergonomics. It’s not just a command runner; it’s a productivity booster designed to make executing all your scripts, builds, tests, and deployments feel… well, just right! It takes away the friction, leaving you more time to build awesome stuff.

My Favorite Features

Okay, prepare to be impressed! Just isn’t just another utility; it’s packed with thoughtful features that genuinely improve your workflow. Here are a few that make me grin:

Quick Start

Ready to dive in? Getting started with Just is ridiculously easy. You’ll be running commands like a pro in minutes!

First, let’s get it installed. If you’re a Rustacean, you know the drill:

cargo install just

Or, if you’re on macOS:

brew install just

For other installation methods (Windows, Linux, etc.), check out the official repo – it’s super well-documented!

Now, let’s create your first justfile. In your project’s root directory, create a file named justfile (no extension needed!).

# justfile

greet:
  echo "Hello from Just, Tech Blogger!"

version message:
  echo "You're running Just version $(just --version)."

default: greet

Save that, and now open your terminal in the same directory. Let’s run it!

To run the greet recipe:

just greet

You should see:

Hello from Just, Tech Blogger!

Want to see all available commands?

just --list

Output:

Available recipes:
    default     # Alias for `greet`
    greet
    version

And to run the default recipe (which we’ve set to greet):

just

See? It’s that simple!

Who is this for?

Just is a fantastic addition to almost any developer’s toolkit, but it really shines for:

While Just is incredibly versatile, if you’re working on highly complex C/C++ projects that genuinely leverage the deep, intricate features of GNU Make for dependency tracking and advanced build graphs, you might find Just a bit too lightweight for those specific scenarios. But for 90% of your scripting and command-running needs? Just is your champion!

Summary

In a world full of complex tools, Just stands out by embracing simplicity, speed, and developer happiness. It’s a fantastic example of Rust’s power applied to a common developer pain point, delivering a clean, efficient, and joy-inducing experience.

This isn’t just another utility; it’s a paradigm shift in how you’ll manage your project commands. Stop wrestling with arcane syntaxes and start enjoying a streamlined workflow. Trust me, once you go Just, you’ll wonder how you ever lived without it.

So, what are you waiting for? Head over to the casey/just GitHub repo, give it a star, and get ready to supercharge your project automation. Your future self (and your teammates!) will thank you! Happy coding!