wasm-fs
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

npm version

wasm-fs

Extract & Instantiate embedded file structure from WebAssembly.

Support

  • [x] Emscripten SDK
  • [ ] Go

Installation

$ npm i wasm-fs

or

$ yarn add wasm-fs

Example

Emscripten SDK

Generate WASM with embedded file

$ emcc hello.c -s STANDALONE_WASM -o hello.html --embed-file embedded_file

Generate WASM with embedded directory

$ emcc hello.c -s STANDALONE_WASM -o hello.html --embed-file embedded_dir

Extract embedded file structure from WASM

import fs from "fs";
import { resolve } from "path";

import WASMFileSystem from "wasm-fs";

(async () => {
  const wasmFileSystem = await WASMFileSystem.from(
    fs.readFileSync(resolve(__dirname, "hello.wasm"))
  );
  console.log("root:", wasmFileSystem.root);
  const testDirectory = wasmFileSystem.root.getChild("testDirectory");
  console.log("testDirectory:", testDirectory);
  fs.writeFileSync(
    "./image.png",
    testDirectory.getFile("testImage.png").content
  );
})();

Go

Not Implemented Yet.

License

MIT License

Copyright (c) 2023 이승훈

Readme

Keywords

none

Package Sidebar

Install

npm i wasm-fs

Weekly Downloads

1

Version

0.1.2

License

none

Unpacked Size

11.6 kB

Total Files

10

Last publish

Collaborators

  • lshqqytiger