Skip to content

ctbarna/node-packer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPacker

pypacker is a binary packer and unpacker inspired by Python's struct library for node.js. Currently, it packs/unpacks to and from a Buffer object. When unpacking, an array is returned with the requested values.

Interfacing is exactly the same as the Python struct python class except there are no 8-byte integers.

Installation

npm install pypacker

Usage

Packer = require('pypacker');
var unpack_array = new Packer('>H')
  .unpack(new Buffer([0x00, 0x01]));
// unpack_array will be an array containing [1]

var packed_buffer = new Packer('>H')
  .pack(1);
// packed_buffer will be a Buffer of length 2 containing 00 01

About

Handle binary strings in node Buffers similar to Python's struct library.

Resources

Stars

Watchers

Forks

Packages

No packages published