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-compile

v1.2.2

Published

Create a JavaScript class from a C structure

Downloads

31

Readme

struct-compile codecov GitHub license npm

Installation

npm i struct-compile --save

Overview

This project provides a convenient function to create a JavaScript class from a C structure, for further parsing or creating binary data.

System Requirements

  • Node.js >= 16.18.0

Getting Started

The main function is compile with the signature:

compile(string, [arch], [BufferImpl]) => object

Example Usage

import { compile } from 'struct-compile';

// also available for commonJS
// const { compile } = require('struct-compile');

const { Data, PDU } = compile(`
  //simple example
  struct Data {
    uint8_t c;
    int v;
    unsigned long da;
  };

  //@NE Network-endiannes for all members of this struct
  struct __attribute__((__packed__)) PDU {
    //Some useful comment
    char name /*in-between comment*/ [16];
    double dbl;
    int p;
  };
`);

// creating objects
const obj = new PDU();

obj.name = 'seva';
obj.dbl = 1.1;

console.log('PDU size: ', obj.length);
console.log('PDU buffer example: ', obj.buffer);

// parsing raw binary data
const parsed = new PDU(
  Buffer.from([0x73, 0x65, 0x76, 0x61,
               0x00, 0x00, 0x00, 0x00,
               0x00, 0x00, 0x00, 0x00,
               0x00, 0x00, 0x00, 0x00,
               0x3f, 0xf1, 0x99, 0x99,
               0x99, 0x99, 0x99, 0x9a,
               0x00, 0x00, 0x00, 0x00])
);

console.log(parsed.name.toString());
console.log(parsed.dbl);

The syntax for creating structures takes into account C rules for aligning objects within a structure, and auxiliary comments help to automatically set the endianness of the field. Learn more about alignment here and here.

Compatibility and Project Checklist

An important note is that the input syntax is the subset of the C syntax, current syntax rules can be viewed here.

This project has been tailored with specific compatibilities and limitations. Below is a checklist highlighting the current state of support for various features:

| Feature | Supported | Notes | |---------------------|------------------|-----------------------------------------------| | Nested Structures | ❌ No | | | Enums | ❌ No | | | Browser Support | ❌ No | Currently, there is no support for browsers. | | Bitfields | ✅ Yes | | | C Structure Parsing | ✅ Yes | | | Binary Data Creation| ✅ Yes | | | Endianness Setting | ✅ Yes | Via auxiliary comments within the structure. |

Please note that while some features like bitfields, nested structures, and enums are not currently supported, the project is continually evolving. Contributions or suggestions for these areas are welcome.

Questions or Suggestions

If you have any ideas, or something is not working correctly, feel free to open an issue.