/dwebx-storage

DEPRECATED LEGACY DWEB MODULE

Primary LanguageJavaScriptMIT LicenseMIT

dwebx-storage

DWebX specific storage provider for DDrive

npm install dwebx-storage

Usage

var storage = require('dwebx-storage')

// files are stored in ./my-dataset
// metadata (hashes and stuff) are stored in ./my-dataset/.dwebx
// secret keys are stored in ~/.dwebx/secret_keys/<discovery-key>
var archive = ddrive(storage('my-dataset'))

Custom storage provider

You can require this module in your own storage provider in order to override certain behaviors for some files while still using the default dwebx storage methods for other files. Here's an example of overriding only the secret key storage and nothing else:

const defaultStorage = require('dwebx-storage')
const alternativeSecretStorage = require('your-own-custom-random-access-file-module')

module.exports = function keychainStorage() {
  const storage = defaultStorage(...arguments)
  return {
    metadata: function(file, opts) {
      if (file === 'secret_key') alternativeSecretStorage(file)
      return storage.metadata(...arguments)
    },
    content: function(file, opts) {
      return storage.content(...arguments)
    }
  }
}

Options

  • secretDir - folder to store secret keys in (default is users home dir)
  • prefix - subfolder to put dwebx SLEEP files in (default is .dwebx/)

Secret Keys

By default secret keys are stored in the users home directory via dwebx-secret-storage. To change the directory, pass it as an option:

var storage = require('dwebx-storage')

var archive = ddrive(storage('my-dataset', {secretDir: '/secret_keys'})

License

MIT