docs improved

This commit is contained in:
Manuel Araoz 2015-01-22 16:06:04 -03:00
parent 3de1561a5c
commit af6c2e8779
2 changed files with 1 additions and 9 deletions

View File

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

@ -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
@ -35,4 +30,4 @@ peer.on('inv', function(message) {
peer.connect();
```
```