hyperdrive icon indicating copy to clipboard operation
hyperdrive copied to clipboard

Hyperdrive is a secure, real time distributed file system

Results 88 hyperdrive issues
Sort by recently updated
recently updated
newest added

From what I understand - the hyperdrive and the underlying hypercore supports a key/secret pair for encrypting it's content. Everyone holding the public key can read - and those with...

When creating a new hyperdrive instance on a directory, allow to sync the files there if it's not empty. This would allow to work on the files offline and sync...

In the following method, opts is not used. ``` function defaultStorage (self, storage, opts) { var folder = '' if (typeof storage === 'object' && storage) return wrap(self, storage) if...

If you pass in `content` as an option, the archive.key [never gets set](https://github.com/mafintosh/hyperdrive/blob/master/index.js#L696). May also be fixed with #149. I can PR test for this. Seems like it'd be an...

`opts.indexing` doesn't make sense on the wholee hyperdrive. We may want to import in place and from another directory for the same archive. It should be on the write stream...

So the client can modify the chunks before they are written and read, or chunk the data differently

- [ ] When an archive is finished downloading - [x] When an update arrives - [ ] When an update is finished downloading (can be the same event as...

ready

It'd be really nice to have events for when files are modified and then downloaded. I'm doing [like this](https://github.com/beakerbrowser/pauls-dat-api/blob/c606c83d733950b7d2f1f50d8e4ead05213464fc/lib/act-stream.js#L100-L176) right now and that relies on a lot of .has() calls,...

Currently deletes dont record a wallclock timestamp, which we could use in history views

If I pass in the key, I would expect hyperdrive to have the key as an object, even if its not ready. current behavior: ```js var archive = hyperdrive('./dir', 'mykey')...