├── .gitignore ├── README.md ├── index.js ├── lib ├── const.js └── util.js ├── package.json └── test ├── api-in-memory.js ├── api-latest.js ├── api.js ├── lib └── dat-helpers.js └── scaffold ├── test-runner-dat ├── dat.json ├── index.html └── index.js └── test-static-dat ├── beaker.png ├── hello.txt └── subdir ├── hello.txt └── space in the name.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/index.js -------------------------------------------------------------------------------- /lib/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/lib/const.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/package.json -------------------------------------------------------------------------------- /test/api-in-memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/test/api-in-memory.js -------------------------------------------------------------------------------- /test/api-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/test/api-latest.js -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/test/api.js -------------------------------------------------------------------------------- /test/lib/dat-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/test/lib/dat-helpers.js -------------------------------------------------------------------------------- /test/scaffold/test-runner-dat/dat.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Test Runner Dat" 3 | } -------------------------------------------------------------------------------- /test/scaffold/test-runner-dat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/test/scaffold/test-runner-dat/index.html -------------------------------------------------------------------------------- /test/scaffold/test-runner-dat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/test/scaffold/test-runner-dat/index.js -------------------------------------------------------------------------------- /test/scaffold/test-static-dat/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/node-dat-archive/HEAD/test/scaffold/test-static-dat/beaker.png -------------------------------------------------------------------------------- /test/scaffold/test-static-dat/hello.txt: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /test/scaffold/test-static-dat/subdir/hello.txt: -------------------------------------------------------------------------------- 1 | hi -------------------------------------------------------------------------------- /test/scaffold/test-static-dat/subdir/space in the name.txt: -------------------------------------------------------------------------------- 1 | hi --------------------------------------------------------------------------------