FunctionalScript is a safe, purely functional programming language and a strict subset of ECMAScript/JavaScript. It's inspired by
- JSON and JSON5 as subsets of JavaScript values. JSON is also a subset of FunctionalScript values.
- asm.JS (a precursor of WebAssembly), as a subset of JavaScript.
- TypeScript, as a superset of JavaScript.
The FunctionalScript specification describes the language
the compiler accepts today; features not implemented yet are in
spec/todo/.
Learn more about
This repository is a monorepo and distributed under MIT.
Install FunctionalScript via npm:
npm install -g functionalscriptor run the CLI without installing it, with npx functionalscript <command>.
A FunctionalScript module is already a JavaScript module, so nothing has to be
compiled to run it. fjs compile goes the other way: it resolves every
import and writes the language the output name declares. The value outputs,
.json and .data.js, evaluate the module and write the data it exports. The
graph outputs, .js, .edag.data.js and .rs, write the program rather than
its value, so a function has an output at all; .edag.data.js and .rs write
every computation too, while the .js writer cannot spell a call or an
operator other than unary - yet.
// m.f.js
export default ["text"];
// input.f.js
import c from "./m.f.js";
const a = 1;
export default [a, a, c, { x: c }];fjs compile input.f.js output.data.js # DataJS
fjs compile input.f.js output.js # FunctionalScript
fjs compile input.f.js output.json # JSON
fjs compile input.f.js output.edag.data.js # the program's EDAG
fjs compile input.f.js output.rs # a generated nanvm-lib moduleEach .js name has an .mjs twin — .data.mjs, .mjs, .edag.data.mjs —
for a file that must load as an ES module whatever the package's "type" says.
c is one array reached twice, so output.data.js keeps it shared:
const $0=["text"];export default [1,1,$0,{"x":$0}];JSON is a tree, so output.json is refused rather than written with two copies:
output.json - error: no JSON spelling for a shared node
The specification is the reference for what the compiler accepts, and its Output section says what each output writes or refuses.
| Command | Description | Documentation |
|---|---|---|
fjs test |
Run the FunctionalScript test suite | fjs/emergent_testing |
fjs compile |
Compile a FunctionalScript module to JavaScript or JSON | fjs/fsc |
fjs cas |
Content-addressable storage (add, get, list) |
fjs/cas/README.md |
fjs mcp |
MCP server over stdio, exposing the CAS and Evo as tools | fjs/mcp/README.md |
fjs ci |
Generate the GitHub Actions CI and npm publishing workflows | fjs/ci/README.md |
fjs web |
Serve a directory over HTTP | fjs/web/README.md |
fjs run |
Run a FunctionalScript module as a Node program | fjs/README.md |
fjs help |
Print the available commands | fjs/README.md |
Run fjs help to print the available commands, or see
fjs/README.md for the full CLI reference. Commands also accept
short aliases, which fjs help prints; the documentation spells them out
instead.
We aim to create a safe, cross-platform programming language that can work in any JS platform without any build step. There are thousands of programming languages, and we don't want to create another one that others must learn. Instead, we take the opposite approach: we remove everything that makes the most popular and cross-platform language unsafe, insecure, or less portable.
FunctionalScript code can be used:
- safely in any JavaScript/TypeScript application or library;
- as a JSON with expressions, see DJS;
- as a query language;
- as a smart contract programming language in DeFi.
In FunctionalScript:
- Any module is a valid JavaScript module. No additional build steps are required.
- Code should not have side-effects. Any JavaScript statement, expression, or function that has a side effect is not allowed in FunctionalScript. There are no exceptions to this rule, such as
unsafecode, which can be found in Rust, C#, and other languages. - A module can depend only on another FunctionalScript module.
- It also has no standard library. Only a safe subset of standard JavaScript API can be used without referencing other modules.