Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guenchi/ChezJS

Compile JavaScript to Native Code
https://github.com/guenchi/ChezJS

chez-scheme compiler javascript

Last synced: about 2 months ago
JSON representation

Compile JavaScript to Native Code

Awesome Lists containing this project

README

        

# ChezJS Javascript Engine
Compile JavaScript to Native Code (with Chez Scheme as backend)

Compile to .so file:

```
$ chezjs test.js
compiling test.js.sc with output to test.js.so
$ scheme test.js.so
```

Repl:

```
$ chezjs
> const i = 89;
#
> var k = 100;
#
> function f(x, y){x + y;}
#
> f(i, k);
189
>
```