Just is a simple, and modern runtime for JavaScript that uses V8 and is built in Rust.
Shell (Mac, Linux):
sh
curl -fsSL https://justjs.dev/install.sh | sh
PowerShell (Windows):
powershell
irm https://justjs.dev/install.ps1 | iex
Homebrew (Mac):
sh
brew install justjs
Chocolatey (Windows):
powershell
choco install justjs
Scoop (Windows):
powershell
scoop install justjs
Build and install from source using Cargo:
sh
cargo install justjs --locked
Try running a simple program:
sh
just run https://r.justjs.dev/std/examples/welcome.js
Or a more complex one:
```js import { cmd } from 'just/sys'; import { random } from 'just/crypto'; import { Database } from 'just/db:sqlite';
const db = new Database('db_name');
db.create('versions', 'id text primary key, version text'); await cmd.spawn('just -v').then((output) => { db.insert('versions', { id: random.secure(), version: output }); });
console.json(db.query('versions', "where version = '%s'".format(cmd.exec('just -v'))), true); db.delete('versions', ''); ```
Just package registry can be located here (api).
You can find a deeper introduction, examples, and environment setup guides in the docs.
The complete API reference is available at the runtime documentation.