├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── commands │ ├── fuse-setup.js │ ├── start.js │ └── stop.js ├── index.js └── run │ ├── run │ └── run.cmd ├── index.js ├── lib ├── common.js ├── debug │ └── index.js ├── drives │ ├── array-index.js │ └── index.js ├── errors.js ├── fuse │ ├── index.js │ └── virtual-files.js ├── log.js ├── metadata.js ├── peers.js └── peersockets.js ├── manager.js ├── package.json ├── scripts └── configure.js └── test ├── hyperdrive.js ├── peersockets.js ├── replication.js └── util └── create.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/README.md -------------------------------------------------------------------------------- /bin/commands/fuse-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/bin/commands/fuse-setup.js -------------------------------------------------------------------------------- /bin/commands/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/bin/commands/start.js -------------------------------------------------------------------------------- /bin/commands/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/bin/commands/stop.js -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@oclif/command') 2 | -------------------------------------------------------------------------------- /bin/run/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/bin/run/run -------------------------------------------------------------------------------- /bin/run/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/index.js -------------------------------------------------------------------------------- /lib/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/common.js -------------------------------------------------------------------------------- /lib/debug/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/debug/index.js -------------------------------------------------------------------------------- /lib/drives/array-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/drives/array-index.js -------------------------------------------------------------------------------- /lib/drives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/drives/index.js -------------------------------------------------------------------------------- /lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/errors.js -------------------------------------------------------------------------------- /lib/fuse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/fuse/index.js -------------------------------------------------------------------------------- /lib/fuse/virtual-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/fuse/virtual-files.js -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/metadata.js -------------------------------------------------------------------------------- /lib/peers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/peers.js -------------------------------------------------------------------------------- /lib/peersockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/lib/peersockets.js -------------------------------------------------------------------------------- /manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/manager.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/package.json -------------------------------------------------------------------------------- /scripts/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/scripts/configure.js -------------------------------------------------------------------------------- /test/hyperdrive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/test/hyperdrive.js -------------------------------------------------------------------------------- /test/peersockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/test/peersockets.js -------------------------------------------------------------------------------- /test/replication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/test/replication.js -------------------------------------------------------------------------------- /test/util/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/hyperdrive-daemon/HEAD/test/util/create.js --------------------------------------------------------------------------------