1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 17:50:07 +01:00
site/_src/_guides/_setup.md

595 B

Setup

Start by installing the official BigchainDB JavaScript driver:

npm i bigchaindb-driver

Then, include that as a module and connect to IPDB or any BigchainDB node. In the case of IPDB, create your own app_id and app_key on IPDB.

const BigchainDB = require('bigchaindb-driver')

const API_PATH = 'https://test.ipdb.io/api/v1/'
const conn = new BigchainDB.Connection(API_PATH, {
    app_id: 'Get one from developers.ipdb.io',
    app_key: 'Get one from developers.ipdb.io'
})