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

binpack

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binpack - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

changes.md
# Changelog
## 0.0.3
Switched "repositories" to "repository" in package.json.
## 0.0.2
Updated documentation

23

package.json
{
"name": "binpack",
"version": "0.0.2",
"version": "0.0.3",
"main": "binpack",
"author": {
"name" : "Russell McClellan",
"email": "russell.mcclellan@gmail.com",
"url" : "http://www.ghostfact.com"
},
"description": "Minimalist numeric binary packing utilities for node.js",

@@ -11,16 +16,7 @@ "keywords": [

],
"maintainers": [
"repository":
{
"name": "Russell McClellan",
"email": "russell.mcclellan@gmail.com",
"web": "http://www.ghostfact.net",
"twitter": "rmcclellan"
}
],
"repositories": [
{
"type": "git",
"url": "http://github.com/ghostfact/node-binpack.git"
}
],
} ,
"devDependencies" : [

@@ -37,4 +33,5 @@ "vows",

"scripts": {
"install": "node-waf configure build"
"install": "node-waf configure build",
"test" : "vows tests/*"
}
}

@@ -5,2 +5,4 @@ # binpack

## What's all this?
This is an intentionally simple binary packing/unpacking package for node.js for programmers who prefer to write most of their parsing code in javascript. This exposes some common binary formats for numbers.

@@ -30,1 +32,5 @@

Both types of functions take an optional second argument. If this argument is `"big"`, the output is put in big endian format. If the argument is `"little"`, the output is put in little endian format. If the argument is anything else or non-existent, we default to your machine's native encoding.
## How is this different than the `binary` module on npm?
It contains floating point values, and it has packing functions
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