Socket
Socket
Sign inDemoInstall

lmdb

Package Overview
Dependencies
2
Maintainers
1
Versions
168
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.3 to 0.1.0

16

package.json
{
"name" : "lmdb"
, "description" : "nothing to see here yet, please move along"
, "description" : "A Low-level, LevelDOWN-compatible, Node.js LMDB binding"
, "contributors" : [

@@ -8,10 +8,12 @@ "Rod Vagg <r@va.gg> (https://github.com/rvagg)"

, "keywords": [
"lmdb", "mdb", "level", "leveldown"
]
, "version" : "0.0.3"
, "version" : "0.1.0"
, "main" : "lmdb.js"
, "dependencies" : {
"bindings" : "~1.1.0"
"bindings" : "~1.1.0"
, "nan" : "~0.3.1"
}
, "devDependencies" : {
"tap" : "*"
"tap" : "*"
, "rimraf" : "*"

@@ -21,9 +23,9 @@ , "abstract-leveldown" : "*"

, "repository" : {
"type" : "git"
, "url" : "https://github.com/rvagg/lmdb.git"
"type" : "git"
, "url" : "https://github.com/rvagg/lmdb.git"
}
, "scripts" : {
"test" : "tap ./test.js test/*-test.js --stderr"
"test" : "tap ./test.js test/*-test.js --stderr"
}
, "license" : "MIT"
}

@@ -82,4 +82,2 @@ LMDB for Node.js

## TODO: `key` can be `Buffer`? What limitations?
The `key` and `value` objects may either be `String`s or Node.js `Buffer` objects and cannot be `undefined` or `null`. Other object types are converted to JavaScript `String`s with the `toString()` method and the resulting `String` *may not* be a zero-length. A richer set of data-types are catered for in LevelUP.

@@ -86,0 +84,0 @@

@@ -5,3 +5,4 @@ const test = require('tap').test

// 1MBish
, bigBlob = Array.apply(null, Array(1024 * 100)).map(function () { return 'aaaaaaaaaa' }).join('')
, bigBlob = require('crypto').randomBytes(1000000)
//, bigBlob = Array.apply(null, Array(1024 * 100)).map(function () { return 'aaaaaaaaaa' }).join('')

@@ -8,0 +9,0 @@ test('setUp common', testCommon.setUp)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc