GithubHelp home page GithubHelp logo

anthrax3 / struct Goto Github PK

View Code? Open in Web Editor NEW

This project forked from component/struct

0.0 1.0 0.0 99 KB

C style structs for reading and writing to Uint8Arrays

Makefile 3.10% HTML 14.94% JavaScript 81.96%

struct's Introduction

struct

C struct style buffer views for reading and writing structures of varying types.

Installation

$ component install component/struct

Example

var struct = require('struct');

// buffer big enough for all 3 structs
var buf = new Uint8Array(3 * (32 + 5 + 16));

var Pet = struct({
  id: 'uint32',
  name: 'string',
  age: 'uint16'
});

// write

var tobi = new Pet({
  id: 1,
  name: 'Tobi',
  age: 2
});

var loki = new Pet({
  id: 2,
  name: 'Loki',
  age: 2
});

var jane = new Pet({
  id: 3,
  name: 'Jane',
  age: 6
});

var off = 0;
var pets = [tobi, loki, jane];
for (var i = 0; i < pets.length; i++) {
  off = pets[i].write(buf, off);
}

// read

var n = 3;
var off = 0;
var pet = new Pet;
while (n--) {
  off = pet.read(buf, off);
  console.log('%s (%s) is %s years old', pet.name, pet.id, pet.age);
}

API

...

License

MIT

struct's People

Contributors

tj avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.