├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── example.js ├── index.js ├── package.json ├── swarm.js └── test ├── archive.js └── feed.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | db 3 | data 4 | .DS_Store -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/package.json -------------------------------------------------------------------------------- /swarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/swarm.js -------------------------------------------------------------------------------- /test/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/test/archive.js -------------------------------------------------------------------------------- /test/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/hypercore-archiver/HEAD/test/feed.js --------------------------------------------------------------------------------