electron-sys 0.4.0

Raw bindings to the Electron API for projects using wasm-bindgen.
Documentation
1
2
3
4
5
6
7
8
import { default as init, main } from "./crates/app-renderer/pkg/hash_app_renderer.js";

async function run() {
  await init("./crates/app-renderer/pkg/hash_app_renderer_bg.wasm");
  main();
}

run();