An open API service indexing awesome lists of open source software.

https://github.com/devsnek/node-zstd

Zstandard bindings for Node.js
https://github.com/devsnek/node-zstd

nodejs zstd

Last synced: 7 months ago
JSON representation

Zstandard bindings for Node.js

Awesome Lists containing this project

README

          

# zucc

Zstandard compression bindings for Node.js

```js
const { DecompressStream } = require('zucc');

const stream = new DecompressStream();
const ab = stream.decompress(uint8ArrayOfCompressedData);
```