A JavaScript binding of LZ4 for the browser.
npm install lz4-asmLZ4 WASM, ASM.js and CLI for browser and Node with almost native performance.
This package includes WASM, ASM.js module and variant that can be used in CLI.
html
``html
OR
`
``
npm install lz4-asm
``
npm install lz4-asm -g
lz4-asm -h
By default module will be exposed as UMD module. In browsers will be defined as window.lz4initlz4init()
Since WASM modules can't be easily loaded synchronously in browsers some setup for initialization have to be proceed:
- call will trigger asyncronous loading of .wasm file and return instance of lz4modulelz4module
- accessible right after lz4init call, but the only safe method to ensure that .wasm file loading finished - wait for lz4module.ready Promiselz4module.ready
- Promise will return fully loaded lz4module instance that can be named lz4wasm
- From usage perspective not really useful to work directly with module, there is predefined lz4.lz4js property that contains all useful methods and helpers.
In short all this flow can be described with next code example:
`javascript`
const lz4module = lz4init();
lz4module.ready.then((lz4) => {
const lz4js = lz4.lz4js;
})
Or even shorter with async/await and Object destructuring
`javascript`
const { lz4js } = await lz4init().ready;
First of all to compile sources in synchronous module mode - set -s WASM_ASYNC_COMPILATION=0 option in gulp/emscripten.js file for DEV_ARGS variable.
Then in node env it can be accessed easily const lz4 = lz4init(); that's it.lz4init({ wasmBinary: wasmModuleAsArrayBuffer });
BUT! There is a big issue in browsers because WASM modules are restricted for synchronous load in main thread.
There are two ways to load it, both require to pass argument into init function where wasmModuleAsArrayBuffer - preloaded file as ArrayBuffer in Uint8Array view representation:`
1. Manually load/preload module through XHR/fetch, etc. then transform to arrayBuffer and call javascript`
fetch('PATH_TO_WASM_FILE')
.then(response => response.arrayBuffer())
.then(wasmModuleAsArrayBuffer => lz4init({ wasmBinary: wasmModuleAsArrayBuffer }))
.catch(err => {
throw new Error('Failed to load WASM module');
}).wasm
1. Another variant - to encode module as base64, include in bundle, on runtime decode base64 to arrayBuffer and init`javascript
function _base64ToArrayBuffer(base64) {
const binary_string = window.atob(base64);
const binary_length = binary_string.length;
const bytes = new Uint8Array(binary_length);
for (var i = 0; i < binary_length; i++) {
bytes[i] = binary_string.charCodeAt(i);
}
return bytes.buffer;
}
const wasmModuleAsArrayBuffer = _base64ToArrayBuffer(wasmAsBase64);
const lz4 = lz4init({ wasmBinary: wasmModuleAsArrayBuffer });
`
Both async (default) and sync modes available for ASM.js module but with one important difference.sync
For variant there NO NEED for any extra setup. Set -s WASM_ASYNC_COMPILATION=0 option in gulp/emscripten.js and simply use as:`javascript`
const lz4 = lz4init();
It is much easier operate with ASM.js variant is sync mode, but for some cases it operate slower than WASM variant. You can see difference in tests if target different variants in top require statement.
- lz4.BLOCK_MAX_SIZE['64KB']lz4.BLOCK_MAX_SIZE['256KB']
- lz4.BLOCK_MAX_SIZE['1MB']
- lz4.BLOCK_MAX_SIZE['4MB']
-
compress to a lz4 buffer.
- source Uint8Array | BufferNumber [4-7]
- options
- frameInfo
- blockSizeID: or as alias lz4.BLOCK_MAX_SIZE["4MB"]. Available sizes: { "64KB": 4, "256KB": 5, "1MB": 6, "4MB" 7 }Number [0-1]. Default: 0
- blockMode: , 0: blocks linked, 1: blocks independentNumber [0-1]. Default: 0
- contentChecksumFlag: , 0: Checksum not available. 1: frame terminated with 32-bit checksum of decompressed dataNumber [0-1]. Default: 0
- dictID: , Dictionary ID, sent by compressor to help decoder select correct dictionary; 0: no dictID providedNumber [0-1]. Default: 0
- blockChecksumFlag: , 1: each block followed by a checksum of block's compressed data; 0: disabledNumber [0-16]. Default: 0
- preferences
- compressionLevel: , 0: faster but low compression, 16: slower but best compressionNumber [0-1]. Default: 1
- autoFlush: , 1: always flush, reduces usage of internal buffers. 0 - flush disabledNumber [0-1]. Default: 1
- favorDecSpeed: , 1: parser favors decompression speed vs compression ratio. Only works for high compression modesUint8Array | Buffer
- return
More about options you can find at LZ4 frame description: https://github.com/lz4/lz4/blob/master/doc/lz4_Frame_format.md
decompress a lz4 buffer.
- source Uint8Array | BufferUint8Array | Buffer
- return
create a nodejs transform stream.
- options
- frameInfo
- blockSizeID: Number [4-7] or as alias lz4.BLOCK_MAX_SIZE["4MB"]. Available sizes: { "64KB": 4, "256KB": 5, "1MB": 6, "4MB" 7 }Number [0-1]. Default: 0
- blockMode: , 0: blocks linked, 1: blocks independentNumber [0-1]. Default: 0
- contentChecksumFlag: , 0: Checksum not available. 1: frame terminated with 32-bit checksum of decompressed dataNumber [0-1]. Default: 0
- dictID: , Dictionary ID, sent by compressor to help decoder select correct dictionary; 0: no dictID providedNumber [0-1]. Default: 0
- blockChecksumFlag: , 1: each block followed by a checksum of block's compressed data; 0: disabledNumber [0-16]. Default: 0
- preferences
- compressionLevel: , 0: faster but low compression, 16: slower but best compressionNumber [0-1]. Default: 1
- autoFlush: , 1: always flush, reduces usage of internal buffers. 0 - flush disabledNumber [0-1]. Default: 1
- favorDecSpeed: , 1: parser favors decompression speed vs compression ratio. Only works for high compression modes
More about options you can find at LZ4 frame description: https://github.com/lz4/lz4/blob/master/doc/lz4_Frame_format.md
create a nodejs transform stream.
- latest emscripten
- nodejs 10+
Clone the repo.
``
git clone https://github.com/ukyo/lz4.js.git
Install the dev dependencies.
``
cd path/to/lz4.js
npm install
Download the original LZ4 repo and compile for development.
``
npx gulp init
Watch for code updates and run tests.
``
npx gulp watchDev
Run development tests
Release build.
``
npx gulp release
buildLib
cleanTest
cleanRelease
compileDev
compileAsmRelease
compileWasmRelease
concatDev
concatAsmRelease
concatWasmRelease
debugTests
fetchLib
rollup
runTests
watchDevinitTask
release
releaseAsm
releaseWasm
testDev
``