compress-buffer-crc32
Synchronous Buffer compression library for Node.js
Last updated 10 years ago by kuebk .
Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install compress-buffer-crc32 
SYNC missed versions from official npm registry.

node-compress-buffer

Synchronous Buffer compression library for Node.js.

Synopsis

compress = require('compress-buffer').compress;
uncompress = require('compress-buffer').uncompress;

var rawData = fs.readFileSync("/etc/passwd");

var compressed   = compress(rawData);
var uncompressed = uncompress(compressed);

uncompressed == rawData // true!

Why?

For the sake of the KISS principle. Most of the time you don't need a streaming compression, you need to compress an existing and already complete data.

Options

compress() takes two arguments: the data (must be a Buffer()) and optional compression level which must be within 1..9. It returns compressed Buffer() or undefined on error.

uncompress() takes a single argument: the data (must be a Buffer()) and returns uncompressed Buffer() or undefined on error.

Both functions could throw exceptions in the following cases:

  • zlib initialisation fails;
  • first argument is not a Buffer instance.

Installation

npm install compress-buffer

or

npm install .

License

See LICENSE file. Basically, it's a kind of "do-whatever-you-want-for-free" license.

Thanks to

  • A lot of thanks for important suggestions goes to Konstantin Käfer who implemented a nice similar module node-zlib (https://github.com/kkaefer/node-zlib) earlier than me;
  • Oleg Kertanov, pccowboy, addisonj, David Swift

Author

Egor Egorov me@egorfine.com.

Current Tags

  • 1.2.12                                ...           latest (10 years ago)

13 Versions

  • 1.2.12                                ...           10 years ago
  • 1.2.11                                ...           11 years ago
  • 1.2.10                                ...           11 years ago
  • 1.2.9                                ...           11 years ago
  • 1.2.8                                ...           11 years ago
  • 1.2.7                                ...           11 years ago
  • 1.2.6                                ...           12 years ago
  • 1.2.5                                ...           12 years ago
  • 1.2.4                                ...           12 years ago
  • 1.2.3                                ...           12 years ago
  • 1.2.2                                ...           13 years ago
  • 1.2.1                                ...           13 years ago
  • 1.2.0                                ...           13 years ago
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 13
Dependencies (0)
None
Dev Dependencies (1)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |