New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

rust-just

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rust-just

🤖 Just a command runner

latest
Source
npmnpm
Version
1.49.0
Version published
Maintainers
1
Created
Source
Table of Contents↗️

rust-just

github repo npm downloads license npm version

rust-just is a handy way to save and run project-specific commands.

Commands, called recipes, are stored in a file called justfile with syntax inspired by make

Getting Started

Run instantly without installation

You can use rust-just without installing it on your system using npx:

~/$ npx rust-just@latest [OPTIONS] [ARGUMENTS]...

It will run the most recent version of rust-just.

Installation as global dependency

The recommended way to install rust-just is as a global dependency:

~/$ npm install -g rust-just

and then run with:

~/$ just [OPTIONS] [ARGUMENTS]...

Installation as local dependency

rust-just could also be installed as a local dependency:

~/$ npm install rust-just

Note: To pass Execa options to just, use the --execaoptions <OPTIONS> flag, where OPTIONS is in JSON format.

For example:

~/$ just --execaoptions '{"stdio": "inherit", "reject": false}' [OPTIONS] [ARGUMENTS]...

For a complete list of available Execa options, refer to the Execa API documentation.

To read more visit: https://just.systems/man/en/

Author & Maintainer

  • @gnpaone

Documentation

The documentation is available as a book.

Disclaimer: The rust-just npm package is maintained by @gnpaone with permission from the original just developer. This package is not officially maintained by just’s creator but uses up-to-date, official binaries from the casey/just repository at the time of release to ensure compatibility and authenticity.

Keywords

just

FAQs

Package last updated on 06 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts