├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Readme.md ├── datfox-helper.js ├── dathelper.json ├── installer.sh ├── package.json └── src ├── api.js ├── browser.js ├── dns.js ├── gateway.js ├── library.js └── migrate.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | library/ 3 | dist/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/Readme.md -------------------------------------------------------------------------------- /datfox-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/datfox-helper.js -------------------------------------------------------------------------------- /dathelper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/dathelper.json -------------------------------------------------------------------------------- /installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/installer.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/package.json -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/src/api.js -------------------------------------------------------------------------------- /src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/src/browser.js -------------------------------------------------------------------------------- /src/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/src/dns.js -------------------------------------------------------------------------------- /src/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/src/gateway.js -------------------------------------------------------------------------------- /src/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/src/library.js -------------------------------------------------------------------------------- /src/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammacbeth/dat-fox-helper/HEAD/src/migrate.js --------------------------------------------------------------------------------