# just を Homebrew, apk, chocolatey, apt, dnf, MacPorts, Nix, pacman, zypper, scoop, winget でインストール

just のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:just
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install just
```

  証拠: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install just
```

  証拠: MacPorts ports tree: sysutils/just/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add just
```

  証拠: Alpine Linux edge package indexes: just from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install just
```

  証拠: Debian stable package indexes: just from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install just
```

  証拠: Fedora Rawhide package metadata: just from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#just
```

  証拠: nixpkgs package indexes: pkgs/by-name/ju/just/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S just
```

  証拠: Arch Linux sync databases: just from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install just
```

  証拠: openSUSE Tumbleweed package metadata: just from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install just
```

  証拠: Chocolatey community package catalog: just from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','java7u13x86'

- Scoop (92%):

```sh
scoop install main/just
```

  証拠: Scoop official bucket manifest trees: bucket/just.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id Casey.Just -e
```

  証拠: Windows Package Manager source index: Casey.Just from https://cdn.winget.microsoft.com/cache/source.msix

## パッケージ情報

- **パッケージキー:** brew:just
- **パッケージマネージャ:** Homebrew
- **バージョン:** 1.57.0
- **ソース概要:** Handy way to save and run project-specific commands
- **ホームページ:** <https://just.systems>
- **リポジトリ:** <https://github.com/casey/just>
- **最終更新:** 2026-07-19T04:49:07Z
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- just (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 1.57.0
## プロジェクトの歴史と使われ方

just is a cross-platform command runner for saving project-specific commands in a `justfile`. It borrows the familiar recipe shape of Makefiles but deliberately avoids being a timestamp-based build system.

### プロジェクトの歴史

Casey Rodarmor created the `just` repository on 2016-06-17. The project grew from a practical frustration with using `make` for non-build automation: developers wanted named commands, arguments, helpful errors, directory search, completions, and readable syntax without Make's build-system semantics.

The official manual frames `just` as a command runner, not a build system. Recipes live in a file named `justfile`, `Justfile`, `.justfile`, or one of the documented fallback locations, and users invoke them as `just RECIPE`.

Version 1.0.0 was published on GitHub on 2022-02-22. By 2026-07-01, the repository metadata showed more than 34,000 GitHub stars and regular release activity, indicating that `just` had moved well beyond a niche Rust utility.

### 採用の歴史

The official README documents installation through package managers, prebuilt binaries, and Cargo. The input package metadata shows broad packaging across Alpine, Homebrew, Chocolatey, Debian, Fedora, MacPorts, Nix, Arch, Scoop, Ubuntu, winget, and openSUSE-family packages.

Adoption has been helped by `just` being a single Rust-built CLI with no runtime dependency on a language-specific project stack. It fits repositories that want a shared entry point for testing, linting, formatting, release tasks, Docker commands, or local development setup.

### 使われ方

A repository usually stores recipes in `justfile`; running `just` lists available recipes, and running `just name args...` executes one recipe. The manual documents shell selection, dotenv loading, parameters, aliases, imports, modules, completions, and recipes written in arbitrary languages.

The key usage boundary is that `just` does not replace Make for dependency-aware incremental builds. It replaces the common pattern of using Makefiles or ad hoc scripts as a menu of project commands.

### パッケージ好きにとっての重要性

just is significant because it became the package-manager-friendly version of a tiny team convention. A single binary plus a plain text `justfile` gives projects a predictable command surface without requiring contributors to learn an entire build system.

For package nerds, it is also interesting as a Rust CLI that is packaged almost everywhere and competes with decades of Make muscle memory by being intentionally less powerful in the build-system sense.

### タイムライン

- 2016-06-17: The just GitHub repository is created.
- 2022-02-22: just 1.0.0 is published on GitHub.
- 2022-02-28: just 1.0.1 is published on GitHub with prebuilt release artifacts.
- 2026-06-30: just 1.55.1 is published on GitHub.

### Related projects

- GNU Make is the historical comparison point and the tool whose command-runner misuse just often replaces.
- Taskfile and npm scripts are adjacent ways to publish project commands.
- just-lsp provides Language Server Protocol support for editing justfiles.
- Cargo is the Rust package manager used to install just from source or crates.io.

### ソース

- <https://api.github.com/repos/casey/just>
- <https://api.github.com/repos/casey/just/releases>
- <https://github.com/casey/just>
- <https://github.com/casey/just/releases/tag/1.0.0>
- <https://just.systems/man/en/>
- <https://raw.githubusercontent.com/casey/just/master/README.md>


## セキュリティノート

just に一致するローカルシークレット処理マニフェストは見つかりませんでした。将来の対応で安定したパッケージ URL を使えるよう、Nucleus パッケージメタデータはここに公開されています。



## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: justfile, Justfile, .justfile, $XDG_CONFIG_HOME/just/justfile, ~/.config/just/justfile, ~/justfile, ~/.justfile
## 他のパッケージマネージャ記録

- Debian apt - just - 1.40.0-1+b1: normalized package name match | Debian stable package indexes: just from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Save and run project-specific commands | https://github.com/casey/just
- Nix - just: normalized package name match | nixpkgs package indexes: pkgs/by-name/ju/just/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - just - 1.21.0-1: normalized package name match | Ubuntu 24.04 LTS package indexes: just from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Save and run project-specific commands | https://github.com/casey/just
- apk - just - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Just a command runner | https://github.com/casey/just
- apk - just-bash-completion - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-bash-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bash completions for just | https://github.com/casey/just
- apk - just-doc - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Just a command runner (documentation) | https://github.com/casey/just
- apk - just-fish-completion - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-fish-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Fish completions for just | https://github.com/casey/just
- apk - just-zsh-completion - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-zsh-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Zsh completions for just | https://github.com/casey/just
- dnf - just - 1.57.0-1.fc45: normalized package name match | Fedora Rawhide package metadata: just from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Just a command runner | https://crates.io/crates/just
- pacman - just - 1.57.0-1: normalized package name match | Arch Linux sync databases: just from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | A handy way to save and run project-specific commands | https://github.com/casey/just
- zypper - just - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Commmand runner | https://github.com/casey/just
- zypper - just-bash-completion - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just-bash-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Bash Completion for just | https://github.com/casey/just
- zypper - just-fish-completion - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just-fish-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Fish Completion for just | https://github.com/casey/just
- zypper - just-zsh-completion - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just-zsh-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Zsh Completion for just | https://github.com/casey/just
- MacPorts - just: normalized package name match | MacPorts ports tree: sysutils/just/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Chocolatey - just: normalized package name match | Chocolatey community package catalog: just from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','java7u13x86'


## 関連リンク

- [just](https://pkg.so/ja/pkg/cargo/just/) - Same normalized package name exists in another local package ecosystem.

## Combined YAML source

View the package source record on GitHub. [combined/just.yml](https://github.com/mxcl/pkgdb/blob/main/combined/just.yml)


## ソース

- pkg.so package database
- Geiger risk classifier
- curated configuration and credential file locations
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
