npm.io
0.1.1 • Published 5 years ago

wasm-lz-string

Licence
MIT
Version
0.1.1
Deps
0
Size
29 kB
Vulns
0
Weekly
0
Stars
1

wasm-lz-string

Usage

Use npm or yarn to install package

npm install wasm-lz-string --save
# Or use yarn
yarn add wasm-lz-string
Import the package on nodejs
const LzString = require('wasm-lz-string')

// decode_base64: (source: string): string
LzString.decode_base64('BIUwNmD2A0AEDukBOYAmBCIA'); // Hello, world!

Devlopment

Build with wasm-pack build
wasm-pack build --target nodejs
# ⬆️ Just build for cjs, you can build for esm ⬇️
wasm-pack build

The pkg directory is the package directory

Batteries Included

  • wasm-bindgen for communicating between WebAssembly and JavaScript.
  • lz_string implementation of lz-string decompression