0.0.23 • Published 8 months ago

ezno v0.0.23

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

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
0.0.23

8 months ago

0.0.22

10 months ago

0.0.21

1 year ago

0.0.20

1 year ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.15

2 years ago

0.0.17

2 years ago

0.0.13

2 years ago

0.0.14

2 years ago

0.0.1

2 years ago

0.0.8

2 years ago

0.0.0

3 years ago