🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

binary-parse-fn

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binary-parse-fn

Painless binary protocol parsers using generators.

1.0.0
latest
Source
npm
Version published
Maintainers
1
Created
Source

binary-parse-fn

Painless streaming binary protocol parsers using generators.

Installation

npm install binary-parse-fn

Streaming use

This module uses the exact same generator interface as binary-parse-stream, which presents a streaming interface to a generator parser.

Usage

var BinaryParser = require('binary-parse-fn')

BinaryParser is a function that takes a buffer and passes the return value of your generator back. When your generator yields a number, it'll be fed a buffer of that length from the input. If it yields -1, it'll be given the value of the first byte instead of a single-byte buffer.

Example

The following module parses a protocol that consists of a 32-bit unsigned big-endian type parameter, an unsigned 8-bit length parameter, and a buffer of the specified length. It returns {type, buf} objects.

var BinaryParser = require('binary-parse-fn')

module.exports = BinaryParser(function*() {
  var type = (yield 4).readUInt32BE(0, true)
    , length = yield -1
    , buf = yield length
  return { type: type, buf: buf }
})

Keywords

generator

FAQs

Package last updated on 31 May 2014

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