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

binary-types

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
b

binary-types

helpers for binary-parser

2.1.0
latest
74

Supply Chain Security

100

Vulnerability

90

Quality

76

Maintenance

100

License

Version published
Weekly downloads
3
-62.5%
Maintainers
1
Weekly downloads
 
Created
Issues
0

binary-types

helpers for binary-parser

Installation

npm install binary-types

Types

  • u8
  • u16le
  • u16be
  • u32le
  • u32be
  • f32le
  • f32be
  • f64le
  • f64be

Examples

'use strict'
var binary = require('binary-types')
  , read = binary.read
  , write = binary.write

exports.parse = require('binary-parser')(function* parser() {
  var value = yield* read.u8()
  return value
})

exports.bufferify = function(str) {
  var buf = Buffer(str.length)
  if (buf.length > 0xFF) throw new Error('too long')
  return Buffer.concat(write.u8(buf.length), buf)
}

API

var binary = require('binary-types')
  , read = binary.read
  , write = binary.write

yield* read[type]()

returns the decoded value.

write[type](value)

returns a buffer with the encoded value.

endianness shortcuts

to avoid repeating the endianness over and over:

> read.be.u16 === read.u16be
true
> read.le.u16 === read.u16le
true
> binary.le.read === read.le
true
> binary.be.write === write.be
true

FAQs

Package last updated on 01 Jun 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