![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@libp2p/interface-peer-discovery
Advanced tools
Peer Discovery interface for libp2p
$ npm i @libp2p/interface-peer-discovery
The primary goal of this module is to enable developers to pick and/or swap their Peer Discovery modules as they see fit for their application, without having to go through shims or compatibility issues. This module and test suite was heavily inspired by abstract-blob-store.
Publishing a test suite as a module lets multiple modules all ensure compatibility since they use the same test suite.
The API is presented with both Node.js and Go primitives, however, there is not actual limitations for it to be extended for any other language, pushing forward the cross compatibility and interop through different stacks.
Send a PR to add a new one if you happen to find or write one.
Include this badge in your readme if you make a new module that uses interface-peer-discovery API.
Install interface-discovery
as one of the dependencies of your project and as a test file. Then, using mocha
(for JavaScript) or a test runner with compatible API, do:
const tests = require('libp2p-interfaces-compliance-tests/peer-discovery')
describe('your discovery', () => {
// use all of the test suits
tests({
setup () {
return YourDiscovery
},
teardown () {
// Clean up any resources created by setup()
}
})
})
A valid (read: that follows this abstraction) Peer Discovery module must implement the following API:
start
the serviceawait discovery.start()
Start the discovery service.
It returns a Promise
stop
the serviceawait discovery.stop()
Stop the discovery service.
It returns a Promise
discovery.on('peer', (peerData) => {})
Every time a peer is discovered by a discovery service, it emits a peer
event with the discovered peer's information, which must contain the following properties:
Licensed under either of
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.
FAQs
Peer Discovery interface for libp2p
The npm package @libp2p/interface-peer-discovery receives a total of 298 weekly downloads. As such, @libp2p/interface-peer-discovery popularity was classified as not popular.
We found that @libp2p/interface-peer-discovery demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.