swc/README.md
2018-11-10 18:02:51 +09:00

715 B

spdy web compiler

Build Status codecov


Make the web (development) faster.

Installation

Requires nightly version of rust.

cargo install --git https://github.com/swc-project/swc.git

Usage

test.js:

8 + 8;
use(8 + 8, 8 ** 8);

Example

swc jsc test.js

Output

8 + 8;
use(8 + 8, Math.pow(8, 8));

Example

swc jsc --optimize test.js

Output

use(8 + 8, Math.pow(8, 8));