JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q32909F
  • License MIT

A JavaScript compiler and TypeScript checker written in Rust with a focus on static analysis and runtime performance

Package Exports

  • ezno
  • ezno/cli
  • ezno/initialised

Readme

Ezno

This contains a JavaScript edition of Ezno

CLI

This package includes a JS & WASM based version of the CLI. You can use as follows

node dist/cli.cjs info
# or
deno run -A dist/cli.mjs info

Library example

For a environment that supports node:fs, you can use a version that initializes the WASM for you

import { check } from 'ezno/initialised';
const fs_handler = (_path) => "const x: string = t ? 4 : 5;";
const output = check("input.ts", fs_handler);
console.dir(output.diagnostics, { depth: 5 });

For the web, init() is needed to load the WASM before calling any functions.

import { check, init } from 'ezno';

await init();

const fs_handler = (_path) => "const x: string = t ? 4 : 5;";
const output = check("input.ts", fs_handler);
console.dir(output.diagnostics, { depth: 5 });

See more usage in the ./test.mjs and in the playground.

You can see the Rust definitions of these exports under ../../src/wasm_bindings.rs. Thanks to #114 all these exports have associated type definitions.

There also exists more functions such as check_with_options which takes an additional TypeCheckOptions. For parsing string to AST there is parse_expression & parse_module. If you find something implemented in Rust, but not exposed to the JS or WASM context: feel to make a request issue for it to be exposed via the JS API.

Commands for building this package

Run this from this folder, not the root:

npm run clean
npm run build

See package.json for the other building commands.

  • It first builds the WASM binary with rustc, cargo build --lib --target wasm32-unknown-unknown
  • It then binds (builds associate JS library) into the build folder with wasm-bindgen --out-dir build --target web
  • It then bundles (and generates CJS & EJS formats) with some associate JS using unbuild into the dist folder