-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: new super simplified API * feat: append peer id to multiaddr if not there * [WIP] Awesome DHT (#86) * feat: integrate dht * better interfaces * docs: add documentation for peerRouting, contentRouting, dht * fix: take in passed datastore * fix: update usage of _getPeerInfo * fix: getPeerInfo * docs: update docs * moar feat: correctly handle p2p-circuit addrs when creating a peer info object refactor: rework config options * feat: adding circuit relaying * feat: rework circuit relay for protobufs * feat: circuit loading and tests * fix: clean up _getPeerInfo to work with /p2p-circuit * wip: tests cleaup * test: clean up * wip * fix: bringing back test reworks and new aegir * test: group tests * test: clean up * test: adjust test * fix: use getPeerId to determine if the ipfs fragment is missing * feat: adding circuit relaying * feat: circuit loading and tests * test: clean up * wip * feat: upgrade to latest aegir * fix: removing unused tests * feat: cleanup tests * fix: create node defautl options * chore: upgrade swarm to latest version * fix: updated aegir and adjust timeouts * feat: more timeouts * chore: updating deps * fix: circle ci builds * test: timeouts
- Loading branch information
Showing
15 changed files
with
314 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,16 @@ | |
"description": "JavaScript base class for libp2p bundles", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"test": "gulp test", | ||
"test:node": "gulp test:node", | ||
"test:browser": "gulp test:browser --dom", | ||
"release": "gulp release --dom", | ||
"release-minor": "gulp release --type minor --dom", | ||
"release-major": "gulp release --type major --dom", | ||
"build": "gulp build", | ||
"lint": "aegir-lint", | ||
"coverage": "aegir-coverage", | ||
"coverage-publish": "aegir-coverage publish" | ||
"lint": "aegir lint", | ||
"build": "aegir build", | ||
"test": "aegir test --target node --target browser --no-parallel", | ||
"test:node": "aegir test --target node --no-parallel", | ||
"test:browser": "aegir test --target browser --no-parallel", | ||
"release": "aegir test release --target node --target browser --no-parallel", | ||
"release-minor": "aegir release --type minor --target node --target browser --no-parallel", | ||
"release-major": "aegir release --type major --target node --target browser --no-parallel", | ||
"coverage": "aegir coverage", | ||
"coverage-publish": "aegir coverage --provider coveralls" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -39,39 +39,40 @@ | |
"dependencies": { | ||
"async": "^2.5.0", | ||
"libp2p-ping": "~0.6.0", | ||
"libp2p-swarm": "~0.32.4", | ||
"mafmt": "^3.0.1", | ||
"multiaddr": "^3.0.1", | ||
"peer-book": "~0.5.1", | ||
"peer-id": "~0.10.1", | ||
"libp2p-swarm": "~0.33.0", | ||
"mafmt": "^3.0.2", | ||
"multiaddr": "^3.0.0", | ||
"peer-book": "~0.5.0", | ||
"peer-id": "~0.10.0", | ||
"peer-info": "~0.11.0" | ||
}, | ||
"devDependencies": { | ||
"aegir": "^11.0.2", | ||
"aegir": "^12.1.0", | ||
"chai": "^4.1.2", | ||
"dirty-chai": "^2.0.1", | ||
"cids": "~0.5.1", | ||
"libp2p-kad-dht": "~0.5.1", | ||
"libp2p-mdns": "~0.9.1", | ||
"dirty-chai": "^2.0.1", | ||
"electron-webrtc": "^0.3.0", | ||
"libp2p-circuit": "^0.1.2", | ||
"libp2p-kad-dht": "~0.5.0", | ||
"libp2p-mdns": "~0.9.0", | ||
"libp2p-multiplex": "~0.5.0", | ||
"libp2p-railing": "~0.7.1", | ||
"libp2p-secio": "~0.8.1", | ||
"libp2p-railing": "~0.7.0", | ||
"libp2p-secio": "~0.8.0", | ||
"libp2p-spdy": "~0.11.0", | ||
"libp2p-tcp": "~0.11.0", | ||
"libp2p-webrtc-star": "~0.13.2", | ||
"libp2p-websockets": "~0.10.1", | ||
"libp2p-tcp": "^0.11.0", | ||
"libp2p-webrtc-star": "^0.13.2", | ||
"libp2p-websockets": "^0.10.4", | ||
"lodash.times": "^4.3.2", | ||
"pre-commit": "^1.2.2", | ||
"pull-goodbye": "0.0.2", | ||
"pull-serializer": "^0.3.2", | ||
"pull-stream": "^3.6.1", | ||
"pull-stream": "^3.6.0", | ||
"safe-buffer": "^5.1.1", | ||
"electron-webrtc": "^0.3.0", | ||
"sinon": "^2.3.6", | ||
"wrtc": "0.0.62" | ||
}, | ||
"contributors": [ | ||
"Chris Bratlien <[email protected]>", | ||
"Daijiro Wachi <[email protected]>", | ||
"David Dias <[email protected]>", | ||
"Elven <[email protected]>", | ||
"Friedel Ziegelmayer <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.