diff --git a/README.md b/README.md index cebb5d0..5584ed9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ P2P Networking capabilities for bitcore [![Build Status](https://img.shields.io/travis/bitpay/bitcore-p2p.svg?branch=master&style=flat-square)](https://travis-ci.org/bitpay/bitcore-p2p) [![Coverage Status](https://img.shields.io/coveralls/bitpay/bitcore-p2p.svg?style=flat-square)](https://coveralls.io/r/bitpay/bitcore-p2p?branch=master) -bitcore-p2p adds support for connecting to the bitcoin p2p network on node. +bitcore-p2p adds support for connecting to the bitcoin p2p network in [Node.js](http://nodejs.org/). See [the main bitcore repo](https://github.com/bitpay/bitcore) for more information. @@ -14,9 +14,6 @@ See [the main bitcore repo](https://github.com/bitpay/bitcore) for more informat ```sh npm install bitcore-p2p ``` -```sh -bower install bitcore-p2p -``` In order to connect to the bitcore network, you'll need to know the IP address of at least one node of the network. You can do that by using the known DNS servers. Then, you can connect to it: ```javascript diff --git a/bower.json b/bower.json deleted file mode 100644 index 883b74b..0000000 --- a/bower.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "name": "bitcore-p2p", - "main": "bitcore-p2p.min.js", - "version": "0.8.7", - "homepage": "http://bitcore.io", - "authors": [ - "BitPay, Inc.", - { - "name": "Yemel Jardi", - "email": "yemel@bitpay.com" - }, - { - "name": "Braydon Fuller", - "email": "braydon@bitpay.com" - }, - { - "name": "Ryan X. Charles", - "email": "ryan@bitpay.com" - }, - ], - "description": "Interface to the bitcoin P2P network for bitcore", - "moduleType": [ - "globals" - ], - "keywords": [ - "bitcoin", - "bitcore", - "btc", - "satoshi" - ], - "license": "MIT", - "ignore": [ - "**/.*", - "CONTRIBUTING.md", - "gulpfile.js", - "lib", - "index.js", - "karma.conf.js", - "npm-shrinkwrap.json", - "test" - ] -} diff --git a/docs/index.md b/docs/index.md index b4a6aea..de3e0e0 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,11 +17,6 @@ For node projects: npm install bitcore-p2p --save ``` -For client-side projects: -```bash -bower install bitcore-p2p --save -``` - ## Quick Start ```javascript