Skip to content

mertcanaltin/amaro

 
 

Repository files navigation

Amaro

Amaro is a wrapper around @swc/wasm-typescript, a WebAssembly port of the SWC TypeScript parser. It's currently used as an internal in Node.js for Type Stripping, but in the future it will be possible to be upgraded separately by users. The main goal of this package is to provide a stable API for TypeScript parser, which is unstable and subject to change.

Amaro means "bitter" in Italian. It's a reference to Mount Amaro on whose slopes this package was conceived.

How to Install

To install Amaro, run:

npm install amaro

How to Use

By default Amaro exports a transformSync function that performs type stripping. Stack traces are preserved, by replacing removed types with white spaces.

const amaro = require('amaro');
const { code } = amaro.transformSync("const foo: string = 'bar';", { mode: "strip-only" });
console.log(code); // "const foo         = 'bar';"

Loader

It is possible to use Amaro as an external loader to execute TypeScript files. This allows the installed Amaro to override the Amaro version used by Node.js.

node --experimental-strip-types --import="amaro/register" script.ts

How to update SWC

To update the SWC version, run:

./tools/update-swc.sh
git add deps
git commit -m "chore: update swc to vX.Y.Z"

Once you have updated the rust source code we must build the wasm. To build the wasm it is necessary to have Docker installed.

node ./tools/build-wasm.js
git add lib
git commit -m "chore: build wasm from swc vX.Y.Z"

TypeScript Version

The supported TypeScript version is 5.5.4.

License (MIT)

See LICENSE.md.

About

Node.js TypeScript wrapper

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 75.2%
  • Shell 9.7%
  • TypeScript 9.4%
  • Dockerfile 5.7%