GiavaScript
A pragmatic JavaScript runtime

GiavaScript v0.7.0

GiavaScript is a small, cross-platform JavaScript runtime built in Crystal. It implements a curated subset of JavaScript, so you keep the familiar feel while running on a fast, practical runtime.

brew tap GiavaScript/giavascript && brew install giavascript

Quick start

Run a file with gs path/to/program.js, or open a REPL with gs.

var name = "GiavaScript";
console.log(`Hello, ${name}`); // Hello, GiavaScript