Latest Socket ResearchMalicious Chrome Extension Performs Hidden Affiliate Hijacking.Details
Socket
Book a DemoInstallSign in
Socket

split-by-header

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

split-by-header

Split binary streams by length fields in messages' headers

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
6
500%
Maintainers
1
Weekly downloads
 
Created
Source

split-by-header

Split binary streams by length fields in messages' headers.

Use this for example to parse streaming data without writing a streaming parser if your chunks are reasonably small.

Usage

var split = require('split-by-header');

// The header is a one byte int
var splitter = split('UInt8');

splitter.on('data', console.log);
// => <Buffer 01 01>>

splitter.write(new Buffer([3, 1, 1]));

API

split(type)

Supported types are are {8,16,32} bit (un)signed integers in BE & LE. See node api Just leave away the read from the node core method.

License

(MIT)

Keywords

split

FAQs

Package last updated on 05 May 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts