Austin Middleton
Austin Middleton
Things work best when the messages relayed are small since they can potentially be relayed through a lot of peers. I haven't tried to test the throughput, but my hunch...
The changes look good so far! Thanks for the PR! I remember a while ago if dev dependencies were included in the `package-lock.json` then `npm install ` would also install...
ZeroNet is an awesome project, and Planktos shares the same core BitTorrent foundation for p2p websites. But both of these projects have very different directions with Planktos' main goal of...
In the service worker, after update() is called the old snapshots should be removed. This can be accomplished by retrieving the list of snapshots, getAllSnapshots(), and then calling remove() on...
For it to be handled in update() the interface has to change first which seems out of scope for this issue
The existing interface doesn't make sense when there can only be one snapshot. `getAllSnapshots` and `removeSnapshot` are pointless when there is only one snapshot
Are you sure your updating the service worker? Refreshing the page won't update it, you'll need to do it from the dev tools on chrome or about:serviceworkers on firefox Edit:...
oh I see, yeah that's right. Those kind of changes will only be reflected if the torrent is updated after the file is changed. Auto checking the .torrent file to...
I'm thinking every page load may be needlessly excessive.. I don't know though
After thinking about it more: * The request to fetch the .torrent file should probably not block page loads. Blocking can potentially cause overly long page loads. This does mean...