0.0.2 • Published 8 years ago

node-buffer-as-typedarray v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

node-buffer-as-typedarray

No copy wrap node Buffer as one of the typed array views

This is a simple wrapper for node Buffer, that will simply add array like getters and setters, allowing you to use Buffer with existing js libraries, without need to copy entire Buffer.

This library uses Little Endian only.

It's unlikely anyone will need this.

#installation

$ npm install node-buffer-as-typedarray
var fs = require('fs');
var wrapper = require('node-buffer-as-typedarray');
var uint32Array = new wrapper.Uint32Array(10);

uint32Array[0] = 10;
console.log(uint32Array[0]); //10