hyperdrive
hyperdrive copied to clipboard
Hyperdrive is a secure, real time distributed file system
### Version hyperdrive: 9.15.0 random-access-memory: 3.1.1 ### Code to reproduce ```javascript const hyperdrive = require('hyperdrive') const ram = require('random-access-memory') let archive = hyperdrive(ram) for (let i = 0; i <...
When I call archive.readFile with the path where the file is empty, callback doesn't get triggered.  If I call the same with path where file is not empty, it...
Pulling the chat conversation into this issue: Hyperdrive V10 needs a diff stream implementation analogous to the [diff stream in Hypertrie](https://github.com/mafintosh/hypertrie#ite--dbdiffversion-prefix-options). Your contribution would be welcome by @mafintosh :)
`drive.readFile()` will wait for its metadata to finish downloading before firing callback. `drive.readdir` does not. Here's an example ```js const hyperdrive = require('hyperdrive') const swarm = require('hyperdiscovery') const ram =...
I am reporting: - [x] a bug or unexpected behavior - [ ] general feedback - [ ] feature request - [ ] security issue # Bug Report Please give...
@blahah and I were debugging some speed + connection issues today. There are a few things causing bad transfer speeds. I can debug this a bit tomorrow and try to...
### User-Problem Many files got/get shared between users as part of a set. So many users _(particularly in the same organization)_ maintain copies of the same file. If those users...
The following snippet occasionally results in this error: ``` var ram = require('random-access-memory'); var hyperdrive = require('hyperdrive'); var discovery = require('hyperdiscovery'); var opts = {"latest": false, "sparse": true} var drive...
Much like the [createReadStream](https://github.com/mafintosh/hyperdb#var-stream--dbcreatereadstreamprefix-options) API from hyperdb, hyperdrive should offer a way to read a subset of the file names in a folder. This will be important for directories with...
Is it possible to delete the secret_key in the metadata after produce a instance The storeSecretKey option is work in hypercore but didnt work in hyperdrive