Get Started

Jerboa uses one command for the language runtime, builder, packages, LSP, and service tooling.

Run a file

jerboa app.ss

Build a project

jerboa jerbuild transpile src lib --force
jerboa jerbuild exec --libdirs lib app.ss
jerboa jerbuild binary --libdirs lib app.ss dist/app

Serve HTTPS

(import (std net httpsd))

(httpsd-start 8443 handler "fullchain.pem" "privkey.pem")

1. Write

Use Jerboa modules, records, macros, fibers, HTTP handlers, and package manifests.

2. Verify

Run project tests through Jerboa tooling and keep native boundaries explicit.

3. Ship

Build a native binary or a static Linux artifact with Jerboa's binary pipeline.