Newer
Older
![crates.io](https://img.shields.io/crates/v/justjs.svg?style=flat-square)
### _NOTICE:_ README LINKS AND SITE ARE WIP. LINKS MAY NOT WORK
<img align="right" src="https://cdn.justjs.dev/assets/svg/logo.svg" height="150px" alt="just circle logo">
Just is a _simple_, and _modern_ runtime for **JavaScript** that uses V8 and is built in Rust.
### Features
- Multiple ways to import files.
- External language support [like go](https://github.com/exact-rs/just/tree/master/src/go).
- Built code formatter and task runner.
- Builds a self-contained executable.
- Useful [built-in](https://justjs.dev/docs/tools) utilities.
- Includes a set of standard modules for [Just](https://justjs.dev/r/std).
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
### Install
Shell (Mac, Linux):
```sh
curl -fsSL https://justjs.dev/install.sh | sh
```
PowerShell (Windows):
```powershell
irm https://justjs.dev/install.ps1 | iex
```
[Homebrew](https://formulae.brew.sh/formula/justjs) (Mac):
```sh
brew install justjs
```
[Chocolatey](https://chocolatey.org/packages/justjs) (Windows):
```powershell
choco install justjs
```
[Scoop](https://scoop.sh/) (Windows):
```powershell
scoop install justjs
```
Build and install from source using [Cargo](https://crates.io/crates/justjs):
```sh
cargo install justjs --locked
```
### Getting Started
Try running a simple program:
```sh
just run https://r.justjs.dev/std/examples/welcome.js
```
Or a more complex one:
```js
const db = new Database('db_name');
db.create('versions', 'id text primary key, version text');
await cmd.spawn('just -v').then((output) => {
db.add('versions', { id: core.id.secure(), version: output });
});
console.json(db.get('versions', "where version = '%s'".format(cmd.exec('just -v'))), true);
```
Just package registry can be located [here](https://justjs.dev/r/) ([api](https://r.justjs.dev)).
You can find a deeper introduction, examples, and environment setup guides in
the [docs](https://justjs.dev/docs).
The complete API reference is available at the runtime
[documentation](https://justjs.dev/docs/api).