data-analysis · machine-learning · v0.4

Load your data.
Pipe it anywhere.
Ship the model.

ForgeScript is a small, expression-oriented language for data analysis and machine learning. Install the forgescript CLI and run .fs scripts straight from your terminal — no notebooks, no glue code.

~ forgescript run
BASHcopy
# inside your project folder
$ curl -fsSL forgelang.app/install.sh | sh
$ forgescript run train.fs

 loaded "iris.csv" — 150 rows × 5 cols
 trained random_forest(trees: 200)
 accuracy 0.973 · saved "models/iris.fm"

// dataframes

Tables, first-class

Load CSV, Parquet, or built-in datasets. Filter, group, and aggregate with a pipe operator that reads top to bottom.

// pipelines

From REPL to prod

The same script runs in the playground, on your laptop, or as a scheduled job. No second language, no glue code.

// cli

One static binary

A single Node CLI. forgescript run, forgescript repl — install in one curl and you're typing fs> in seconds.