Bitdb client
npm install
- There's only one api:
bitdb.read(). - Simply pass a base64 encoded JSON query that follows the Bitdb Query Language spec at https://bitdb.network/#bql
const bitdb = require('bitdb')
bitdb.read({ ... }, function(err, response) {
res.json(response)
})
Also see examples/app.js for an actual example