deflate-crc32-stream

a streaming deflater with CRC32 checksumer

module has been merged into crc32-stream
Last updated 12 years ago by ctalkington .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install deflate-crc32-stream 
SYNC missed versions from official npm registry.

deflate-crc32-stream v0.1.2

deflate-crc32-stream is a streaming deflater with CRC32 checksumer. It uses buffer-crc32 behind the scenes to reliably handle binary data and fancy character sets. Data comes through compressed with zlib.DeflateRaw.

Install

This module has been merged into CRC32Stream. No future updates will be made to this module.

Usage

var CRC32Stream = require('deflate-crc32-stream');

var source = fs.createReadStream('file.txt');
var deflate = new DeflateCRC32Stream();

deflate.on('end', function(err) {
  // do something with deflate.digest() here
});

// either pipe it
source.pipe(deflate);

// or write it
deflate.write('string');
deflate.end();

Instance API

Inherits zlib.DeflateRaw methods.

digest()

Returns the checksum digest in unsigned form.

hex()

Returns the hexadecimal representation of the checksum digest. (ie E81722F0)

size(compressed)

Returns the raw uncompressed size/length of passed-through data.

If compressed is true, it returns compressed length instead.

Instance Options

Inherits zlib.DeflateRaw options.

Things of Interest

Current Tags

  • 0.1.2                                ...           latest (12 years ago)

3 Versions

  • 0.1.2 [deprecated]           ...           12 years ago
  • 0.1.1 [deprecated]           ...           12 years ago
  • 0.1.0 [deprecated]           ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 1
This Month 2
Last Day 0
Last Week 1
Last Month 3
Dependencies (1)
Dev Dependencies (3)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |