You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
bitcore
|
|
|
|
=======
|
|
|
|
|
|
|
|
Nodejs Bitcoin Library
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSTALLATION
|
|
|
|
============
|
|
|
|
|
|
|
|
For Ubuntu:
|
|
|
|
|
|
|
|
# install git
|
|
|
|
sudo apt-get install git
|
|
|
|
|
|
|
|
# download the code
|
|
|
|
git clone https://github.com/bitpay/bitcore.git
|
|
|
|
|
|
|
|
# obtain latest version of node.js
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y python-software-properties python g++ make
|
|
|
|
sudo add-apt-repository -y ppa:chris-lea/node.js
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install nodejs
|
|
|
|
|
|
|
|
# install bitcore
|
|
|
|
cd bitcore/
|
|
|
|
npm install
|