racketscript/racketscript
{ "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": 723, "topics": [ "compiler", "javascript", "programming-language", "racket" ], "updatedAt": "2025-11-07T05:41:43Z", "url": "https://github.com/racketscript/racketscript"}RacketScript
Section titled “RacketScript”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.
Try RacketScript
Section titled “Try RacketScript”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.
Disclaimer
Section titled “Disclaimer”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.
Installation
Section titled “Installation”Following system packages are required:
Quick Install
Section titled “Quick Install”RacketScript can be installed using the Racket package manager raco:
raco pkg install racketscriptSee [Basic Usage]!(#basic-usage) to get started.
Install from Github
Section titled “Install from Github”# Clone RacketScriptgit clone git@github.com:racketscript/racketscript.git`cd racketscript
# Build and installmake setupIf 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.
Basic Usage
Section titled “Basic Usage”RacketScript compiler is named racks.
racks -h # show helpTo compile a Racket source file:
# Installs all NPM dependencies and compile file.rktracks /path/to/file.rktThe 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:
# 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 directoryracks -d /path/to/output/dir /path/to/module-name.rkt
# Print JavaScript output to stdoutracks --js --js-beautify /path/to/module-name.rktBy default tail call optimization is turned off. To enable translation
of self recursive tail calls to loop, pass --enable-self-tail flag.
racks --enable-self-tail /path/to/source.rktBrowser
Section titled “Browser”Most browsers can load RacketScript modules directly without any external
dependencies <script type="module" unsrc="path/to/module.rkt.js"></script>.
Module Bundler (Webpack)
Section titled “Module Bundler (Webpack)”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.
# 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 webpackContributing to RacketScript
Section titled “Contributing to RacketScript”Please read [Contribution Guidelines]!(CONTRIBUTING.md).
Troubleshooting
Section titled “Troubleshooting”Please read the Troubleshooting Wiki.