@axerunners/axecore-p2p
Version:
Interface to the axe P2P network for Axecore
26 lines (18 loc) • 1 kB
Markdown
The `axecore-p2p` module provides peer-to-peer networking capabilities for [axecore](https://github.com/axerunners/axecore-lib), and includes [Peer](peer.md) and [Pool](pool.md) classes. A [Message](messages.md) class is also exposed, in addition to [several types of messages](messages.md). Pool will maintain connection to several peers, Peers represents a node in the bitcoin network, and Message represents data sent to and from a Peer. For detailed technical information about the bitcoin protocol, please visit the [Protocol Specification](https://en.bitcoin.it/wiki/Protocol_specification) on the Bitcoin Wiki.
Peer-to-peer is implemented as a separate module.
For node projects:
```bash
npm install @axerunners/axecore-p2p --save
```
```javascript
var Peer = require('@axerunners/axecore-p2p').Peer;
var peer = new Peer({host: '5.9.85.34'});
// handle events
peer.on('inv', function(message) {
// message.inventory[]
});
peer.connect();
```