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
- Host: GitHub
- URL: https://github.com/devsnek/node-zstd
- Owner: devsnek
- License: mit
- Created: 2019-04-20T21:22:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-14T18:27:55.000Z (over 6 years ago)
- Last Synced: 2025-06-07T18:48:07.071Z (8 months ago)
- Topics: nodejs, zstd
- Language: Rust
- Homepage:
- Size: 25.4 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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);
```