Official BigchainDB JavaScript driver for Node.js and the browser
Go to file
vrde ce0bef1538
Merge branch 'ready-to-roll'
2017-06-16 15:11:33 +02:00
media cleanup all the readme things 2017-06-06 16:29:28 +02:00
src Add few tests 2017-06-16 11:22:23 +02:00
test Add few tests 2017-06-16 11:22:23 +02:00
.babelrc Add few tests 2017-06-16 11:22:23 +02:00
.eslintignore ignores cleanup 2017-06-12 15:54:36 +02:00
.eslintrc.json ignore yarn.lock 2017-04-26 15:58:19 +02:00
.gitignore ignores cleanup 2017-06-12 15:54:36 +02:00
.npmignore npm package fixes 2017-06-13 20:19:02 +02:00
API.md Update API.md 2017-05-14 20:06:56 +02:00
CONTRIBUTING.rst license, authors, etc 2017-05-09 20:23:11 +02:00
LICENSE license cleanup 2017-06-06 16:35:54 +02:00
README.md Simplify README.md 2017-06-16 14:21:52 +02:00
package.json Diversify node and browser builds 2017-06-16 14:21:33 +02:00
webpack.config.js Diversify node and browser builds 2017-06-16 14:21:33 +02:00

README.md

js-bigchaindb-driver

Official JavaScript driver for BigchainDB with some naive helpers to get you on your way making transactions in Node.js and the browser.

npm js ascribe Build Status Greenkeeper badge

Compatibility

BigchainDB Server BigchainDB JavaScript Driver
0.10 0.1.0

Contents

Installation

npm install bigchaindb-driver

Example: Create a transaction

import * as driver from 'bigchaindb-driver'

// BigchainDB server instance or IPDB (e.g. https://test.ipdb.io/api/v1/)
const API_PATH = 'http://localhost:9984/api/v1/'

// Create a new user with a public-private key pair
// (or a whole bunch of them, nobody's counting)
const alice = new driver.Ed25519Keypair()

// Construct a transaction payload
// `driver.Transaction.makeCreateTransaction()`: create a new asset
// `driver.Transaction.makeTransferTransaction()`: transfer an existing asset
const tx = driver.Transaction.makeCreateTransaction(
    { assetMessage: 'My very own asset...' },
    { metaDataMessage: 'wrapped in a transaction' },
    // A transaction needs an output
    // `driver.Transaction.makeOutput()`: requires a crypto-condition
    // `driver.Transaction.makeEd25519Condition()`: simple public key output
    [ driver.Transaction.makeOutput(
            driver.Transaction.makeEd25519Condition(alice.publicKey))
    ],
    alice.publicKey
)

// Optional: You've got everything you need, except for an asset
// and metadata. Maybe define them here, any JSON-serializable object
// will do

// Ok, now that you have a transaction, you need to *sign* it
// cause, you know... cryptography and ¯\_(ツ)_/¯

// Sign/fulfill the transaction with private keys
const txSigned = driver.Transaction.signTransaction(tx, alice.privateKey)

// Send the transaction off to BigchainDB
let conn = new driver.Connection(API_PATH, { 'Content-Type': 'application/json' })

conn.postTransaction(txSigned)
    .then(() => conn.getStatus(txSigned.id))
    .then((res) => console.log('Transaction status:', res.status))

BigchainDB Documentation

Speed Optimizations

This implementation plays "safe" by using JS-native (or downgradable) libraries for its crypto-related functions to keep compatibilities with the browser. If you do want some more speed, feel free to explore the following:

Authors

License

Copyright 2017 BigchainDB GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.