We've come a long way, but this project is still in Alpha, lots of development is happening, API might change, beware of the Dragons 🐉..
Want to get started? Check our examples folder. You can check the development status at the Waffle Board.
libp2p is the product of a long and arduous quest to understand the evolution of the Internet networking stack. In order to build P2P applications, devs have long had to made custom ad-hoc solutions to fit their needs, sometimes making some hard assumptions about their runtimes and the state of the network at the time of their development. Today, looking back more than 20 years, we see a clear pattern in the types of mechanisms built around the Internet Protocol, IP, which can be found throughout many layers of the OSI layer system, libp2p distils these mechanisms into flat categories and defines clear interfaces that once exposed, enable other protocols and applications to use and swap them, enabling upgradability and adaptability for the runtime, without breaking the API.
We are in the process of writing better documentation, blog posts, tutorials and a formal specification. Today you can find:
- libp2p.io
- Specification (WIP)
- Talks
- Articles
To sum up, libp2p is a "network stack" -- a protocol suite -- that cleanly separates concerns, and enables sophisticated applications to only use the protocols they absolutely need, without giving up interoperability and upgradeability. libp2p grew out of IPFS, but it is built so that lots of people can use it, for lots of different projects.
With its modular nature, libp2p can be found being used in different projects with different sets of features, while preserving the same top level API. js-libp2p
is only a skeleton and should not be installed directly, if you are looking for a prebundled libp2p stack, please check:
- libp2p-ipfs-nodejs - The libp2p build used by js-ipfs when run in Node.js
- libp2p-ipfs-browser - The libp2p build used by js-ipfs when run in a Browser (that supports WebRTC)
If you have developed a libp2p bundle, please consider submitting it to this list so that it can be found easily by the users of libp2p.
Again, as noted above, this module is only a skeleton and should not be used directly other than libp2p bundle implementors that want to extend its code.
npm install --save libp2p
You can find multiple examples on the examples folder that will guide you through using libp2p for several scenarios.
The libp2p module acts as a glue for every libp2p module that you can use to create your own libp2p bundle. Creating your own libp2p bundle gives you a lot of freedom when it comes to customize it with features and default setup. We recommend creating your own libp2p bundle for the app you are developing that takes in account your needs (e.g. for a browser working version of libp2p that acts as the network layer of IPFS, we have a built one that leverages the Browser transports).
Example:
// Creating a bundle that adds:
// transport: websockets + tcp
// stream-muxing: spdy & mplex
// crypto-channel: secio
// discovery: multicast-dns
const libp2p = require('libp2p')
const TCP = require('libp2p-tcp')
const WS = require('libp2p-websockets')
const SPDY = require('libp2p-spdy')
const MPLEX = require('libp2p-mplex')
const SECIO = require('libp2p-secio')
const MulticastDNS = require('libp2p-mdns')
const DHT = require('libp2p-kad-dht')
const defaultsDeep = require('@nodeutils/defaults-deep')
const Protector = require('libp2p-pnet')
const DelegatedPeerRouter = require('libp2p-delegated-peer-routing')
const DelegatedContentRouter = require('libp2p-delegated-content-routing')
class Node extends libp2p {
constructor (_options) {
const peerInfo = _options.peerInfo
const defaults = {
// The libp2p modules for this libp2p bundle
modules: {
transport: [
TCP,
new WS() // It can take instances too!
],
streamMuxer: [
SPDY,
MPLEX
],
connEncryption: [
SECIO
],
/** Encryption for private networks. Needs additional private key to work **/
// connProtector: new Protector(/*protector specific opts*/),
/** Enable custom content routers, such as delegated routing **/
// contentRouting: [
// new DelegatedContentRouter(peerInfo.id)
// ],
/** Enable custom peer routers, such as delegated routing **/
// peerRouting: [
// new DelegatedPeerRouter()
// ],
peerDiscovery: [
MulticastDNS
],
dht: DHT // DHT enables PeerRouting, ContentRouting and DHT itself components
},
// libp2p config options (typically found on a config.json)
config: { // The config object is the part of the config that can go into a file, config.json.
peerDiscovery: {
mdns: { // mdns options
interval: 1000, // ms
enabled: true
},
webrtcStar: { // webrtc-star options
interval: 1000, // ms
enabled: false
}
// .. other discovery module options.
},
relay: { // Circuit Relay options
enabled: true,
hop: {
enabled: false,
active: false
}
},
dht: {
kBucketSize: 20,
enabled: true,
enabledDiscovery: true // Allows to disable discovery (enabled by default)
},
// Enable/Disable Experimental features
EXPERIMENTAL: { // Experimental features ("behind a flag")
pubsub: false
}
}
}
// overload any defaults of your bundle using https://github.com/nodeutils/defaults-deep
super(defaultsDeep(_options, defaults))
}
}
// Now all the nodes you create, will have TCP, WebSockets, SPDY, MPLEX, SECIO and MulticastDNS support.
Creates an instance of the libp2p.Node.
Required keys in the options
object:
peerInfo
: instance of PeerInfo that contains the PeerId, Keys and multiaddrs of the libp2p Node.
Start the libp2p Node.
callback
following signature function (err) {}
, where err
is an Error in case starting the node fails.
Stop the libp2p Node.
callback
following signature function (err) {}
, where err
is an Error in case stopping the node fails.
Dials to another peer in the network, establishes the connection.
peer
: can be an instance of PeerInfo, PeerId, multiaddr, or a multiaddr stringcallback
following signaturefunction (err, conn) {}
, whereerr
is an Error in of failure to dial the connection andconn
is a Connection instance in case of a protocol selected, if not it is undefined.
Dials to another peer in the network and selects a protocol to talk with that peer.
peer
: can be an instance of PeerInfo, PeerId, multiaddr, or a multiaddr stringprotocol
: String that defines the protocol (e.g '/ipfs/bitswap/1.1.0')callback
: Function with signaturefunction (err, conn) {}
, whereconn
is a Connection object
callback
following signature function (err, conn) {}
, where err
is an Error in of failure to dial the connection and conn
is a Connection instance in case of a protocol selected, if not it is undefined.
Behaves like
.dial
and.dialProtocol
but calls back with a Connection State Machine
peer
: can be an instance of PeerInfo, PeerId, multiaddr, or a multiaddr stringprotocol
: an optional String that defines the protocol (e.g '/ipfs/bitswap/1.1.0')callback
: following signaturefunction (err, connFSM) {}
, whereconnFSM
is a Connection State Machine
Closes an open connection with a peer, graciously.
callback
following signature function (err) {}
, where err
is an Error in case stopping the node fails.
Looks up for multiaddrs of a peer in the DHT
id
: instance of PeerIdoptions
: object of optionsoptions.maxTimeout
: Number milliseconds
key
: Bufferoptions
: object of optionsoptions.maxTimeout
: Number millisecondsoptions.maxNumProviders
maximum number of providers to find
key
: Buffer
Handle new protocol
protocol
: String that defines the protocol (e.g '/ipfs/bitswap/1.1.0')handlerFunc
: following signaturefunction (protocol, conn) {}
, whereconn
is a Connection objectmatchFunc
: Function for matching on protocol (exact matching, semver, etc). Default to exact match.
Stop handling protocol
protocol
: String that defines the protocol (e.g '/ipfs/bitswap/1.1.0')
Libp2p has started, along with all its services.
Libp2p has stopped, along with all its services.
An error has occurred
err
: instance ofError
Peer has been discovered.
peer
: instance of PeerInfo
We connected to a new peer
peer
: instance of PeerInfo
We disconnected from Peer
peer
: instance of PeerInfo
Check if libp2p is started
Ping a node in the network
PeerBook instance of the node
PeerInfo instance of the node
Same API as IPFS PubSub, defined in the CORE API Spec. Just replace
ipfs
bylibp2p
and you are golden.
DHT methods also exposed for the time being
key
: Buffervalue
: Buffer
key
: Bufferoptions
: object of optionsoptions.maxTimeout
: Number milliseconds
key
: BuffernVals
: Numberoptions
: object of optionsoptions.maxTimeout
: Number milliseconds
Every time any stat value changes, this object emits an update
event.
Should return a stats snapshot, which is an object containing the following keys and respective values:
Returns an object containing the following keys:
- dataSent
- dataReceived
Each one of them contains an object that has a key for each interval (60000
, 300000
and 900000
miliseconds).
Each one of these values is an exponential moving-average instance.
Returns an array containing the tags (string) for each observed transport.
Should return a stats snapshot, which is an object containing the following keys and respective values:
Returns an object containing the following keys:
dataSent dataReceived
Each one of them contains an object that has a key for each interval (60000
, 300000
and 900000
miliseconds).
Each one of these values is an exponential moving-average instance.
Returns an array containing the tags (string) for each observed protocol.
Should return a stats snapshot, which is an object containing the following keys and respective values:
Returns an object containing the following keys:
- dataSent
- dataReceived
Each one of them contains an object that has a key for each interval (60000
, 300000
and 900000
miliseconds).
Each one of these values is an exponential moving-average instance.
Returns an array containing the peerIDs (B58-encoded string) for each observed peer.
Should return a stats snapshot, which is an object containing the following keys and respective values:
Returns an object containing the following keys:
- dataSent
- dataReceived
Each one of them contains an object that has a key for each interval (60000
, 300000
and 900000
miliseconds).
Each one of these values is an exponential moving-average instance.
Stats are not updated in real-time. Instead, measurements are buffered and stats are updated at an interval. The maximum interval can be defined through the Switch
constructor option stats.computeThrottleTimeout
, defined in miliseconds.
Libp2p provides support for connection protection, such as for private networks. You can enforce network protection by setting the environment variable LIBP2P_FORCE_PNET=1
. When this variable is on, if no protector is set via options.connProtector
, Libp2p will throw an error upon creation.
Some available network protectors:
Clone and install dependencies:
> git clone https://github.com/ipfs/js-ipfs.git
> cd js-ipfs
> npm install
# run all the unit tsts
> npm test
# run just Node.js tests
> npm run test:node
# run just Browser tests (Chrome)
> npm run test:browser
N/A
N/A
List of packages currently in existence for libp2p
This table is generated using the module
package-table
withpackage-table --data=package-list.json
.
The libp2p implementation in JavaScript is a work in progress. As such, there are a few things you can do right now to help out:
- Go through the modules and check out existing issues. This would be especially useful for modules in active development. Some knowledge of IPFS/libp2p may be required, as well as the infrastructure behind it - for instance, you may need to read up on p2p and more complex operations like muxing to be able to help technically.
- Perform code reviews. Most of this has been developed by @diasdavid, which means that more eyes will help a) speed the project along b) ensure quality and c) reduce possible future bugs.
- Add tests. There can never be enough tests.
MIT © Protocol Labs