Skip to content
This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Commit ee7da38

Browse files
authored
chore: update readmes (#233)
1 parent b6dda88 commit ee7da38

File tree

55 files changed

+296
-152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+296
-152
lines changed

README.md

+46-18
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,58 @@
1-
# JS libp2p Interfaces
1+
# js-libp2p-interfaces <!-- omit in toc -->
22

3-
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://protocol.ai)
4-
[![](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
5-
[![](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
6-
[![](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg)](https://discuss.libp2p.io)
3+
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4+
[![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5+
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
76
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
8-
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/ci?label=ci&style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions?query=branch%3Amaster+workflow%3Aci+)
7+
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
98

109
> Contains test suites and interfaces you can use to implement the various components of libp2p
1110
12-
## Structure
11+
## Table of contents <!-- omit in toc -->
1312

14-
* [`/packages/libp2p-connection`](./packages/libp2p-connection) An implementation of the Connection interface
15-
* [`/packages/libp2p-interfaces`](./packages/libp2p-interfaces) The interface definitions of various libp2p components
16-
* [`/packages/libp2p-interfaces-compliance-tests`](./packages/libp2p-interfaces-compliance-tests) Tests to ensure adherence of an implementation to the spec
17-
* [`/packages/libp2p-pubsub`](./packages/libp2p-pubsub) An implementation of the Pubsub interface
18-
* [`/packages/libp2p-topology`](./packages/libp2p-topology) An implementation of the Topology interface
13+
- [Structure](#structure)
14+
- [License](#license)
15+
- [Contribution](#contribution)
1916

20-
## Contribute
17+
## Structure
2118

22-
Feel free to join in. All welcome. Open an [issue](https://github.com/libp2p/js-interfaces/issues)!
19+
- [`/packages/interface-address-manager`](./packages/interface-address-manager) Address Manager interface for libp2p
20+
- [`/packages/interface-compliance-tests`](./packages/interface-compliance-tests) Compliance tests for JS libp2p interfaces
21+
- [`/packages/interface-connection`](./packages/interface-connection) Connection interface for libp2p
22+
- [`/packages/interface-connection-compliance-tests`](./packages/interface-connection-compliance-tests) Compliance tests for implementations of the libp2p Connection interface
23+
- [`/packages/interface-connection-encrypter`](./packages/interface-connection-encrypter) Connection Encrypter interface for libp2p
24+
- [`/packages/interface-connection-encrypter-compliance-tests`](./packages/interface-connection-encrypter-compliance-tests) Compliance tests for implementations of the libp2p Connection Encrypter interface
25+
- [`/packages/interface-connection-manager`](./packages/interface-connection-manager) Connection Manager interface for libp2p
26+
- [`/packages/interface-content-routing`](./packages/interface-content-routing) Content routing interface for libp2p
27+
- [`/packages/interface-dht`](./packages/interface-dht) DHT interface for libp2p
28+
- [`/packages/interface-keychain`](./packages/interface-keychain) Keychain interface for libp2p
29+
- [`/packages/interface-keys`](./packages/interface-keys) Keys interface for libp2p
30+
- [`/packages/interface-metrics`](./packages/interface-metrics) Metrics interface for libp2p
31+
- [`/packages/interface-mocks`](./packages/interface-mocks) Mock implementations of several libp2p interfaces
32+
- [`/packages/interface-peer-discovery`](./packages/interface-peer-discovery) Peer Discovery interface for libp2p
33+
- [`/packages/interface-peer-discovery-compliance-tests`](./packages/interface-peer-discovery-compliance-tests) Compliance tests for implementations of the libp2p Peer Discovery interface
34+
- [`/packages/interface-peer-id`](./packages/interface-peer-id) Peer Identifier interface for libp2p
35+
- [`/packages/interface-peer-info`](./packages/interface-peer-info) Peer Info interface for libp2p
36+
- [`/packages/interface-peer-routing`](./packages/interface-peer-routing) Peer Routing interface for libp2p
37+
- [`/packages/interface-peer-store`](./packages/interface-peer-store) Peer Store interface for libp2p
38+
- [`/packages/interface-pubsub`](./packages/interface-pubsub) PubSub interface for libp2p
39+
- [`/packages/interface-pubsub-compliance-tests`](./packages/interface-pubsub-compliance-tests) Compliance tests for implementations of the libp2p PubSub interface
40+
- [`/packages/interface-record`](./packages/interface-record) Record interface for libp2p
41+
- [`/packages/interface-record-compliance-tests`](./packages/interface-record-compliance-tests) Compliance tests for implementations of the libp2p Record interface
42+
- [`/packages/interface-registrar`](./packages/interface-registrar) Registrar interface for libp2p
43+
- [`/packages/interface-stream-muxer`](./packages/interface-stream-muxer) Stream Muxer interface for libp2p
44+
- [`/packages/interface-stream-muxer-compliance-tests`](./packages/interface-stream-muxer-compliance-tests) Compliance tests for implementations of the libp2p Stream Muxer interface
45+
- [`/packages/interface-transport`](./packages/interface-transport) Transport interface for libp2p
46+
- [`/packages/interface-transport-compliance-tests`](./packages/interface-transport-compliance-tests) Compliance tests for implementations of the libp2p Transport interface
47+
- [`/packages/interfaces`](./packages/interfaces) Common code shared by the various libp2p interfaces
2348

24-
This repository falls under the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
49+
## License
2550

26-
[![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)](https://github.com/ipfs/community/blob/master/contributing.md)
51+
Licensed under either of
2752

28-
## License
53+
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
54+
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
55+
56+
## Contribution
2957

30-
[Apache-2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT) © Protocol Labs
58+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-libp2p-interfaces",
33
"version": "1.0.0",
4-
"description": "Interfaces for JS Libp2p",
4+
"description": "Contains test suites and interfaces you can use to implement the various components of libp2p",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/libp2p/js-libp2p-interfaces#readme",
77
"repository": {

packages/interface-address-manager/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @libp2p/interface-address-manager <!-- omit in toc -->
22

3-
[![test & maybe release](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml/badge.svg)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
3+
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4+
[![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5+
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
6+
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
7+
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
48

59
> Address Manager interface for libp2p
610
@@ -9,7 +13,7 @@
913
- [Install](#install)
1014
- [Usage](#usage)
1115
- [License](#license)
12-
- [Contribution](#contribution)
16+
- [Contribution](#contribution)
1317

1418
## Install
1519

@@ -30,6 +34,6 @@ Licensed under either of
3034
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
3135
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
3236

33-
### Contribution
37+
## Contribution
3438

3539
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-address-manager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"release": "aegir release"
129129
},
130130
"dependencies": {
131-
"@libp2p/interfaces": "^2.0.0",
131+
"@libp2p/interfaces": "^3.0.0",
132132
"@multiformats/multiaddr": "^10.2.0"
133133
},
134134
"devDependencies": {

packages/interface-compliance-tests/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @libp2p/interface-compliance-tests <!-- omit in toc -->
22

3-
[![test & maybe release](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml/badge.svg)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
3+
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4+
[![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5+
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
6+
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
7+
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
48

59
> Compliance tests for JS libp2p interfaces
610
@@ -9,7 +13,7 @@
913
- [Install](#install)
1014
- [Usage](#usage)
1115
- [License](#license)
12-
- [Contribution](#contribution)
16+
- [Contribution](#contribution)
1317

1418
## Install
1519

@@ -28,6 +32,6 @@ Licensed under either of
2832
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
2933
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
3034

31-
### Contribution
35+
## Contribution
3236

3337
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-connection-compliance-tests/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @libp2p/interface-connection-compliance-tests <!-- omit in toc -->
22

3-
[![test & maybe release](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml/badge.svg)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
3+
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4+
[![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5+
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
6+
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
7+
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
48

59
> Compliance tests for implementations of the libp2p Connection interface
610
@@ -9,7 +13,7 @@
913
- [Install](#install)
1014
- [Usage](#usage)
1115
- [License](#license)
12-
- [Contribution](#contribution)
16+
- [Contribution](#contribution)
1317

1418
## Install
1519

@@ -48,6 +52,6 @@ Licensed under either of
4852
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
4953
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
5054

51-
### Contribution
55+
## Contribution
5256

5357
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-connection-compliance-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"release": "aegir release"
129129
},
130130
"dependencies": {
131-
"@libp2p/interface-compliance-tests": "^2.0.0",
131+
"@libp2p/interface-compliance-tests": "^3.0.0",
132132
"@libp2p/interface-connection": "~0.0.0",
133133
"aegir": "^37.0.17",
134134
"sinon": "^14.0.0"

packages/interface-connection-encrypter-compliance-tests/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @libp2p/interface-connection-encrypter-compliance-tests <!-- omit in toc -->
22

3-
[![test & maybe release](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml/badge.svg)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
3+
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4+
[![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5+
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
6+
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
7+
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
48

59
> Compliance tests for implementations of the libp2p Connection Encrypter interface
610
@@ -9,7 +13,7 @@
913
- [Install](#install)
1014
- [Usage](#usage)
1115
- [License](#license)
12-
- [Contribution](#contribution)
16+
- [Contribution](#contribution)
1317

1418
## Install
1519

@@ -41,6 +45,6 @@ Licensed under either of
4145
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
4246
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
4347

44-
### Contribution
48+
## Contribution
4549

4650
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-connection-encrypter-compliance-tests/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@
128128
"release": "aegir release"
129129
},
130130
"dependencies": {
131-
"@libp2p/interface-compliance-tests": "^2.0.0",
131+
"@libp2p/interface-compliance-tests": "^3.0.0",
132132
"@libp2p/interface-connection": "~0.0.0",
133-
"@libp2p/interface-connection-encrypter": "~0.0.0",
134-
"@libp2p/interface-peer-id": "~0.0.0",
133+
"@libp2p/interface-connection-encrypter": "^1.0.0",
134+
"@libp2p/interface-peer-id": "^1.0.0",
135135
"@libp2p/peer-id-factory": "^1.0.12",
136136
"@multiformats/multiaddr": "^10.2.0",
137137
"aegir": "^37.0.17",

packages/interface-connection-encrypter/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @libp2p/interface-connection-encrypter <!-- omit in toc -->
22

3-
[![test & maybe release](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml/badge.svg)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
3+
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4+
[![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5+
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
6+
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
7+
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
48

59
> Connection Encrypter interface for libp2p
610
@@ -13,7 +17,7 @@
1317
- [Crypto Errors](#crypto-errors)
1418
- [Error Types](#error-types)
1519
- [License](#license)
16-
- [Contribution](#contribution)
20+
- [Contribution](#contribution)
1721

1822
## Install
1923

@@ -101,6 +105,6 @@ Licensed under either of
101105
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
102106
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
103107

104-
### Contribution
108+
## Contribution
105109

106110
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-connection-encrypter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
"release": "aegir release"
149149
},
150150
"dependencies": {
151-
"@libp2p/interface-peer-id": "~0.0.0",
151+
"@libp2p/interface-peer-id": "^1.0.0",
152152
"it-stream-types": "^1.0.4"
153153
},
154154
"devDependencies": {

packages/interface-connection-manager/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @libp2p/interface-connection-manager <!-- omit in toc -->
22

3-
[![test & maybe release](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml/badge.svg)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
3+
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4+
[![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5+
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
6+
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
7+
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
48

59
> Connection Manager interface for libp2p
610
@@ -9,7 +13,7 @@
913
- [Install](#install)
1014
- [Usage](#usage)
1115
- [License](#license)
12-
- [Contribution](#contribution)
16+
- [Contribution](#contribution)
1317

1418
## Install
1519

@@ -30,6 +34,6 @@ Licensed under either of
3034
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
3135
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
3236

33-
### Contribution
37+
## Contribution
3438

3539
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/interface-connection-manager/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@
129129
},
130130
"dependencies": {
131131
"@libp2p/interface-connection": "~0.0.0",
132-
"@libp2p/interface-peer-id": "~0.0.0",
133-
"@libp2p/interfaces": "^2.0.0"
132+
"@libp2p/interface-peer-id": "^1.0.0",
133+
"@libp2p/interfaces": "^3.0.0"
134134
},
135135
"devDependencies": {
136136
"aegir": "^37.0.17"

0 commit comments

Comments
 (0)