Last active
September 5, 2017 20:09
-
-
Save max-mapper/6b14dff9364cf09f8b1fcea5a4449ee7 to your computer and use it in GitHub Desktop.
hyperdb sparse get
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hyperdb = require('hyperdb') | |
var hyperdiscovery = require('hyperdiscovery') | |
var npmkey = '0f8a60595af5387d52b053af4a8a4aecd5d6d3799741c3993916798e71ea0730' | |
var db = hyperdb('./npm.db', npmkey, {sparse: true, valueEncoding: 'json'}) | |
db.on('ready', function () { | |
var swarm = hyperdiscovery(db, {live: true}) | |
db.once('remote-update', function () { | |
db.get('/modules/aws.js', function (err, data) { | |
console.log(err || data[0].value) | |
}) | |
}) | |
}) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "dat-npm", | |
"version": "4.0.6", | |
"description": "npm registry on dat", | |
"main": "index.js", | |
"dependencies": { | |
"concat-stream": "^1.4.6", | |
"hyperdb": "^1.1.0-rc1", | |
"hyperdiscovery": "^6.0.4", | |
"minify-registry-metadata": "^2.0.0", | |
"ndjson": "^1.5.0", | |
"parallel-transform": "^0.2.2", | |
"pump": "^0.3.5", | |
"request": "^2.40.0", | |
"through2": "^0.6.1" | |
}, | |
"devDependencies": {}, | |
"scripts": {}, | |
"repository": { | |
"type": "git", | |
"url": "git://github.com/mafintosh/dat-npm" | |
}, | |
"keywords": [ | |
"dat", | |
"npm" | |
], | |
"author": "Mathias Buus", | |
"license": "MIT", | |
"bugs": { | |
"url": "https://github.com/mafintosh/dat-npm/issues" | |
}, | |
"homepage": "https://github.com/mafintosh/dat-npm" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment