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

Consider a use case where you can easily get the list of files and the sizes of each file, but downloading all of the files up front would be expensive....

As mentioned in https://github.com/juliangruber/hyperdrive-import-files/pull/23#issuecomment-253499239, it would make sense to me to fully treat `entry.name` as a path and thus also apply normalisation if necessary. Currently it's only treated as a...

question

If the same file, with the same content + metadata, is added twice, it shouldn't be added to the metadata twice. Happening in [the CLI](https://github.com/datproject/dat/issues/542). We can fix it there,...

I've encountered a weird issue, not sure if it's intended. I have two file: `index.js` ``` js var hyperdrive = require('hyperdrive') var level = require('level') var swarm = require('hyperdrive-archive-swarm') var...

I have a hyperdrive that I don't own. The hyperdrive writes the files to disk using RAF. I downloaded a file in the archive, then deleted it from the FS....

I'd like to check whether all files and metadata are present in a non-live archive. The way that I'm currently doing this is by calling `list`, then creating a read...

To enable broader uses of files in a hyperdrive, it requires an API to enable user defined metadata to be added and extracted from files.

https://github.com/mafintosh/hyperdrive/pull/10/files#discussion_r47463174 Just making a reminder so we don't loose track of the inline PR discussion for this one issue.

```js ;(async function() { const Corestore = require('corestore'); const Hyperdrive = require('hyperdrive'); const folder = 'animals'; const store = new Corestore(`./db/${folder}`); await store.ready(); const drive = new Hyperdrive(store); await drive.ready();...