Updates all deps needed to support passing lists of byte arrays where they have been created from multiple input buffers. When reading multiplexed data, all messages arrive in length-prefixed buffers, which means the first few bytes tell the consumer how many bytes long next chunk will be. One length prefixed chunk can be delivered in several payloads from the underlying network transport. The first payload can also include the length prefix and some or all of the data, so we stitch these together in a `Uint8ArrayList` to avoid having to concatenate `Uint8Array`s together. Previously once we'd received enough bytes to satisfy the length prefix we'd concatenate the bytes together, but this is a potentially expensive operation where transports have small message sizes so instead just pass the `Uint8ArrayList` to the consumer and let them decide wether to concatenate or not as some consumers will be smart enough to operate on lists of `Uint8Array`s instead of always requiring a contiguous block of memory. BREAKING CHANGE: Streams are now `Duplex<Uint8ArrayList, Uint8ArrayList | Uint8Array>`
❗❗Outdated: This example is still not refactored with the 0.27.*
release.
WIP on libp2p/js-libp2p#507
Delegated Routing with Libp2p and IPFS
This example shows how to use delegated peer and content routing. The Peer and Content Routing Example focuses on the DHT implementation. This example takes that a step further and introduces delegated routing. Delegated routing is especially useful when your libp2p node will have limited resources, making running a DHT impractical. It's also highly useful if your node is generating content, but can't reliably be on the network. You can use delegate nodes to provide content on your behalf.
The starting Libp2p Bundle in this example starts by disabling the DHT and adding the Delegated Peer and Content Routers. Once you've completed the example, you should try enabled the DHT and see what kind of results you get! You can also enable the various Peer Discovery modules and see the impact it has on your Peer count.
Prerequisite
NOTE: This example is currently dependent on a clone of the delegated routing support branch of go-ipfs.
Running this example
- Install IPFS locally if you dont already have it. Install Guide
- Run the IPFS daemon:
ipfs daemon
- The daemon will output a line about its API address, like
API server listening on /ip4/127.0.0.1/tcp/8080
- In another window output the addresses of the node:
ipfs id
. Make note of the websocket address, it will contain/ws/
in the address. - In
./src/libp2p-bundle.js
check if the host and port of your node are correct, according to the previous step. If they are different, replace them. - In
./src/App.js
replaceBootstrapNode
with your nodes Websocket address from step 4. - Start this example:
npm install
npm start
This should open your browser to http://localhost:3000. If it does not, go ahead and do that now.
- Your browser should show you connected to at least 1 peer.
Finding Content via the Delegate
- Add a file to your IPFS node. From this example root you can do
ipfs add ./README.md
to add the example readme. - Copy the hash from line 5, it will look something like Qmf33vz4HJFkqgH7XPP1uA6atYKTX1BWQEQthzpKcAdeyZ.
- In the browser, paste the hash into the Hash field and hit
Find
. The readme contents should display.
This will do a few things:
- The delegate nodes api will be queried to find providers of the content
- The content will be fetched from the providers
- Since we now have the content, we tell the delegate node to fetch the content from us and become a provider
Finding Peers via the Delegate
- Get a list of your delegate nodes peer by querying the IPFS daemon:
ipfs swarm peers
- Copy one of the CIDs from the list of peer addresses, this will be the last portion of the address and will look something like
QmdoG8DpzYUZMVP5dGmgmigZwR1RE8Cf6SxMPg1SBXJAQ8
. - In your browser, paste the CID into the Peer field and hit
Find
. - You should see information about the peer including its addresses.