node-buffer-as-typedarray

0.0.2 • Public • Published

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

Dependents (0)

Package Sidebar

Install

npm i node-buffer-as-typedarray

Weekly Downloads

0

Version

0.0.2

License

MIT

Last publish

Collaborators

  • dlabz