npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

struct-jmlee

v0.0.12

Published

Pack/Unpack multibyte binary values from/to buffers

Downloads

6

Readme

Struct

NodeJS module to work with buffers as structures (or records) of various fields (like c struct declaration, or pascal record).

Installation

To install with npm:

npm install struct

Example

Define some structure:

var Struct = require('struct');

var Person = Struct()
	.chars('firstName',10)
	.chars('lastName',10)
	.array('items',3,'chars',10)
	.word16Sle('balance'),
People = Struct()
	.word8('presentCount')
	.array('list',2,Person);
	

Now allocate buffer for it

People.allocate();
var buf = People.buffer();

Clear buffer to see how it will change later:

var buf = People.buffer();
for (var i = 0; i < buf.length ; i++) {
	buf[i] = 0;
}
console.log(buf);

Output: <Buffer 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00>

Now you can access memory as defined binary structure with fields property in a handy manner.

var proxy = People.fields;
proxy.presentCount = 2;
console.log(buf);

Output:

<Buffer 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00>

And so on

proxy.list[0].firstName = 'John';
console.log(buf);

Output: <Buffer 02 4a 6f 68 6e 00 00 00 00 00 00 ...

Reference

##Struct()

creates struct object, you may define your data structure with chain calls to following methods:

###word8(name) defines one byte unsigned field, name - always defines name of field

word8Sle(name),word8Sbe(name)

define one byte signed field

word16Sle(name),word16Sbe(name)

define 16 bit signed field with little-endian and big-endian byte order

word16Ule(name),word16Ube(name)

define 16 bit unsigned field with little-endian and big-endian byte order

word32Sle(name),word32Sbe(name),word32Ule(name),word32Ube(name),word64Sle(name),word64Sbe(name),word64Ule(name),word64Ube(name)

same for 32 and 64 bit fields

floatle(name),floatbe(name)

define one float field

doublele(name),doublebe(name)

define one double field

chars(name,length[,encoding])

defines array of chars with encoding ('ascii' by default) encoding, name - name of the field, length - length of array

charsnt(name,length[,encoding])

same as chars but ensure that string is null terminated and buffer remaining space is fill with \0

array(name, length, type, ...)

defines array of fields (internally it is Struct() object with field names set to 0,1,2,... ).

  • name - name of array field;
  • length - length of array;
  • type - string||Struct(), string is interpreted as name of Struct() method to call for each array element.

For example array('numbers',5,'word16Ule') will define array of 2 byte unsigned words (x86 byte order) with 5 elements. Any parameters that follow type will be passed to definition function. So array('someName',3,'chars',20) defines 3 element array of 20 chars. You also may pass Struct() object to make array of structures.

struct(name, Struct() )

defines field that itself is a structure.

Other methods

get(fieldName)

allows access to field (reads value from it's offset in buffer)

set(fieldName, value)

allows access to field (write value at it's offset in buffer)

allocate()

allocates buffer for defined structure with proper size. This is used when you need to format data in buffer and send or write it out.

_setBuff(buffer)

sets buffer reference of object to other buffer. This may be used to parse or adjust some binary data received or read from somewhere.

buffer()

returns currently used buffer. Before you may read or write to structure you have to call either allocate() or _setBuff(buffer). This is not true only for Struct() objects that are fields themselves, as they are allocated automatically by parent Struct object.

fields property

Struct().fields is a Proxy object allowing to access structure fields in a handy manner - as any other javascript object.