2.0.0 • Published 3 years ago

rollup-plugin-assemblyscript v2.0.0

Weekly downloads
356
License
Apache-2.0
Repository
-
Last release
3 years ago

rollup-plugin-assemblyscript

A Rollup plugin that allows you to import AssemblyScript files and compiles them on-the-fly.

Usage

Installation

$ npm install --save rollup-plugin-assemblyscript

Configuration

// rollup.config.js
import { asc } from "rollup-plugin-assemblyscript";

export default {
  /* ... */
  plugins: [
    // ...
    asc(options)
    // ...
  ]
};

And in your JavaScript code you can now import AssemblyScript as usual:

// addition.as
export function add(a: i32, b: i32): i32 {
  return a + b;
}
// main.js
import wasmUrl from "asc:./addition.as";

WebAssembly.instantiateStreaming(fetch(wasmUrl), {}).then(({ instance }) =>
  console.log(instance.exports.add(40, 2))
);

Options

  • compilerOptions: Options bag that is passed straight to the AssemblyScript compiler library.
  • matcher: A RegExp that is used to decided what imports to handle. The default is PREFIX_MATCHER, which will match all imports that start with asc:.
  • useAsBind: Injects the as-bind package into the compilation process for high-level type bindings. See their README for details (implies --exportRuntime).

License Apache-2.0

2.0.0

3 years ago

2.0.0-0

3 years ago

1.3.0

3 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.0.2

4 years ago