/js-libp2p

Node.js implementation of libp2p

Primary LanguageJavaScriptMIT LicenseMIT

Build Status coverage Dependency Status js-standard-style

libp2p is the networking stack of IPFS, a modular networking library to solve P2P application needs.

Table of Contents

Background

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, dev 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 writting better documentation, blog posts, tutorials and a formal specification. Today you can find:

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.

Bundles

With its modular nature, libp2p can be found being used in different projects with different sets of features, while perserving the same top level API. js-libp2p is only a skelleton and should not be installed directly, if you are looking for a prebundled libp2p stack, please check:

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.

Install

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

Usage

Disclamer - We haven't solidified libp2p interface yet, it might change at anytime.

Extending libp2p skeleton

libp2p becomes very simple and basically acts as a glue for every module that compose this library. Since it can be highly customized, it requires some setup. What we recommend is to have a libp2p build for the system you are developing taking into account in your needs (e.g. for a browser working version of libp2p that acts as the network layer of IPFS, we have a built and minified version that browsers can require)

libp2p API

Defined by interface-libp2p

Development

Linting

> npm run lint

Packages

List of packages currently in existance for libp2p

Package Version Dependencies DevDependencies
Bundles
libp2p-ipfs-nodejs npm Dependency Status devDependency Status
libp2p-ipfs-browser npm Dependency Status devDependency Status
Transports
libp2p-utp npm Dependency Status devDependency Status
libp2p-websockets npm Dependency Status devDependency Status
libp2p-webrtc-star npm Dependency Status devDependency Status
Connection Upgrades
interface-connection npm Dependency Status devDependency Status
Stream Muxers
interface-stream-muxer npm Dependency Status devDependency Status
libp2p-spdy npm Dependency Status devDependency Status
libp2p-multiplex
Discovery
libp2p-mdns-discovery npm Dependency Status devDependency Status
libp2p-railing npm Dependency Status devDependency Status
Crypto Channels
libp2p-secio npm Dependency Status devDependency Status
Peer Routing
libp2p-kad-routing npm Dependency Status devDependency Status
Content Routing
interface-record-store npm Dependency Status devDependency Status
libp2p-record npm Dependency Status devDependency Status
libp2p-distributed-record-store npm Dependency Status devDependency Status
libp2p-kad-record-store npm Dependency Status devDependency Status
Generics
libp2p-swarm npm Dependency Status devDependency Status
libp2p-ping npm Dependency Status devDependency Status
multistream-select npm Dependency Status devDependency Status
Data Types
peer-book npm Dependency Status devDependency Status
peer-id

Contribute

THe libp2p implementation in JavaScript is a work in progress. As such, there's 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 infrasture 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.

License

MIT © David Dias