0.14.1 • Published 7 years ago

reitscore-lib v0.14.1

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

Reitscore Library

A pure and powerful JavaScript Bitcoin library.

Get Started

npm install reitscore-lib
bower install reitscore-lib

Documentation

The complete docs are hosted here: bitcore documentation. There's also a bitcore API reference available generated from the JSDocs of the project, where you'll find low-level details on each bitcore utility.

To get community assistance and ask for help with implementation questions, please use our community forums.

Examples

Building the Browser Bundle

To build a bitcore-lib full bundle for the browser:

gulp browser

This will generate files named bitcore-lib.js and bitcore-lib.min.js.

Development & Tests

git clone https://github.com/cssxn/bitcore-lib
cd bitcore-lib
npm install

Run all the tests:

gulp test

You can also run just the Node.js tests with gulp test:node, just the browser tests with gulp test:browser or create a test coverage report (you can open coverage/lcov-report/index.html to visualize it) with gulp coverage.