Merge pull request #20 from braydonf/bug/bower

Remove bower.json and related docs. Fixes #18
This commit is contained in:
Manuel Aráoz 2015-01-27 10:01:51 -03:00
commit e15910a113
3 changed files with 1 additions and 51 deletions

View File

@ -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

View File

@ -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"
]
}

View File

@ -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