numeric-buffer

0.1.0 • Public • Published

NumericBuffer

numeric-buffer is a tiny module for filling a Node.js Buffer with the binary representation of an integer. You can do this in 0.6.0 with buffer.writeUInt8, but not in 0.4.x.

Installation

npm install numeric-buffer

Usage

(function () {
  "use strict";
  var numericBuffer = require('numeric-buffer');
  var buf = numericBuffer(255);
  // buf is now a Buffer of length 1
  console.log(buf[0]);
  //255
}());

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i numeric-buffer

      Weekly Downloads

      1

      Version

      0.1.0

      License

      none

      Last publish

      Collaborators

      • jergason