Skip to content
vic

racketscript/racketscript

Racket to JavaScript Compiler

racketscript/racketscript.json
{
"createdAt": "2016-02-25T02:38:38Z",
"defaultBranch": "master",
"description": "Racket to JavaScript Compiler",
"fullName": "racketscript/racketscript",
"homepage": "",
"language": "Racket",
"name": "racketscript",
"pushedAt": "2025-11-21T21:47:23Z",
"stargazersCount": 724,
"topics": [
"compiler",
"javascript",
"programming-language",
"racket"
],
"updatedAt": "2025-11-26T17:31:08Z",
"url": "https://github.com/racketscript/racketscript"
}

[MIT licensed]!(COPYING.md) Tests ESLint Coverage Status Try Online

Racket Discourse users Racket Discord

RacketScript is an experimental lightweight Racket to JavaScript (ECMAScript 6) compiler. RacketScript aims to leverage both JavaScript and Racket’s ecosystem, and make interoperability between them clean and smooth.

RacketScript takes in Racket source files, uses Racket’s macro expander to produce Fully Expanded Programs, and then compile these fully expanded programs to JavaScript. RacketScript currently supports only a subset of Racket.

You can try RacketScript in your browser at RacketScript Playground.

You may alo be interested in Rackt - An ultrasmall (~70 loc) React wrapper written in RacketScript.

RacketScript is work-in-progress and is not mature and stable. Several Racket features and libraries are not yet implemented (eg. number pyramid, contracts, proper tail calls, continuations). There are also quite a few missing primitive functions. That said, we encourage experimentation, user feedback, discussions, bug reports and pull requests.

Following system packages are required:

  • Racket 6.12 or higher
  • NodeJS (14.0 or higher) and NPM
  • Make

RacketScript can be installed using the Racket package manager raco:

Terminal window
raco pkg install racketscript

See Basic Usage to get started.

Terminal window
# Clone RacketScript
git clone git@github.com:racketscript/racketscript.git`
cd racketscript
# Build and install
make setup

If you do not wish to pollute your root NPM directory, you can set a custom global location by changing your npmrc (eg. echo "prefix = $HOME/.npm-packages" >> ~/.npmrc. Then add /prefix/path/above/bin to your PATH.

RacketScript compiler is named racks.

Terminal window
racks -h # show help

To compile a Racket source file:

Terminal window
# Installs all NPM dependencies and compile file.rkt
racks /path/to/file.rkt

The above command will create a output build directory named js-build, copy RacketScript runtime, copy other support files, install NPM dependencies, compile file.rkt and its dependencies.

The compiled JavaScript modules typically goto one of following three folders:

  • “modules”: The normal Racket files.
  • “collects”: Racket collects source files.
  • “links”: Other third party packages.
  • “dist”: Contains sources compiled to ES6 or bundled JavaScript ready for distribution.

Here are few other examples that would come in handy:

Terminal window
# To skip `npm install` step. Useful when building
# for second time.
racks -n /path/to/module-name.rkt
# Run the assembled JavaScript module.
node js-build/modules/module-name.rkt.js
# Use `-b` to format the assembled JavaScript code use `-b`. Assumes
# `js-beautify` is available in `$PATH`.
racks -b /path/to/module-name.rkt
# Override default output directory
racks -d /path/to/output/dir /path/to/module-name.rkt
# Print JavaScript output to stdout
racks --js --js-beautify /path/to/module-name.rkt

By default tail call optimization is turned off. To enable translation of self recursive tail calls to loop, pass --enable-self-tail flag.

Terminal window
racks --enable-self-tail /path/to/source.rkt

Most browsers can load RacketScript modules directly without any external dependencies <script type="module" unsrc="path/to/module.rkt.js"></script>.

For deployment, you may want to bundle all generated modules into single JavaScript file. RacketScript can generate some boiler-plate for using Webpack/Babel, however we recommend you to use your own configuration.

Terminal window
# Use `--target` or `-t` flag.
racks --target webpack /path/to/source.rkt
# Call webpack to bundle in `js-build` directory. Will produce
# single JavaScript bundle in `js-build/dist` directory.
npx webpack

Please read [Contribution Guidelines]!(CONTRIBUTING.md).

Please read the Troubleshooting Wiki.