Giter VIP home page Giter VIP logo

node-buffercursor's Introduction

BufferCursor

This is a simple module that allows you to traverse a Buffer iteratively. You can read and write different types and the cursor's position will update with the proper size, which you can see through .tell() you can also .seek()

var bc = new BufferCursor(buffer);
bc.readUInt16BE();
bc.readUInt8();
bc.readUInt32BE();
console.log(bc.tell());

Will output 7

Methods

For the most part BufferCursor and Buffer share the same methods, there's just a slight alteration in method signature, none of the methods take an offset.

So .readUInt16LE(10) in Buffer is equivalent to bs.seek(10); bs.readUInt16LE();

All read[U]Int and write[U]Int methods are reproduced, as are toString, write, fill, and slice. All of these methods will move the cursor through the stream and do not take an offset parameter, where an end parameter would normaly be used, here you supply a length.

The following are additional methods:

  • seek(value) -- Seek to an arbitrary position in the stream
  • tell() -- Return the current location in the stream
  • eof() -- Return true if at the end of the stream
  • toByteArray([method]) -- This is a special helper method which will return the entire stream (i.e. from the start) as an array of numbers.
  • By default it will use readUInt8 but you can pass in any read[U]Int[8,16,32][LE,BE] to change what the array is made of

Properties

  • .buffer -- Access to the raw buffer
  • .length -- The size of the buffer

node-buffercursor's People

Contributors

tjfontaine 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.