Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

atomicbuffers

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atomicbuffers

Atomic `readInt32()`, `writeInt32()`, `readUInt32()` and `writeUInt32()` for node.js buffers.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Atomic Buffers

Atomic readInt32(), writeInt32(), readUInt32() and writeUInt32() for node.js buffers.

Status: Experimental

Build Status

Installation

Via npm:

npm install --save atomicbuffers

Usage

var atomic = require("atomicbuffers");

var buf = new Buffer(16);

atomic.writeInt32(buf, 123, 0);
atomic.readInt32(buf, 0); // 123

Benchmarks

JavaScript is faster than C++ ;)

  Starting benchmark: readInt32

  Native benchmark done in 0.0786 seconds, 12717938 iterations per second.
  Node benchmark done in 0.0137 seconds, 73123891 iterations per second.

  Node was 474.97% faster than Native
    ✓ benchmark: readInt32 (93ms)
  Starting benchmark: readUInt32

  Native benchmark done in 0.0788 seconds, 12684125 iterations per second.
  Node benchmark done in 0.0155 seconds, 64487322 iterations per second.

  Node was 408.41% faster than Native
    ✓ benchmark: readUInt32 (94ms)
  Starting benchmark: writeInt32

  Native benchmark done in 0.0820 seconds, 12196550 iterations per second.
  Node benchmark done in 0.0146 seconds, 68397170 iterations per second.

  Node was 460.79% faster than Native
    ✓ benchmark: writeInt32 (97ms)
  Starting benchmark: writeUInt32

  Native benchmark done in 0.0823 seconds, 12150923 iterations per second.
  Node benchmark done in 0.0154 seconds, 64977655 iterations per second.

  Node was 434.75% faster than Native
    ✓ benchmark: writeUInt32 (98ms)

License

Published by codemix under a permissive MIT License, see LICENSE.md.

Keywords

FAQs

Package last updated on 26 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc