1.0.1 • Published 9 years ago

node-subdb v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
9 years ago

node-subdb

Installation

npm install --save node-subdb

Searching

var subdb = require('node-subdb');

subdb.getHash('./test/dexter.mp4').then(function (hash) {
	return subdb.search(hash);
}).then(function (r) {
	res.status(200).end(r);
});

Downloading

var subdb = require('node-subdb');

subdb.getHash('./test/dexter.mp4').then(function (hash) {
	return subdb.download(hash);
}).then(function (r) {
	res.status(200).end(r);
});