├── .eslintrc.json ├── .gitignore ├── .npmignore ├── README.md ├── lib └── FastDownload.js ├── package.json ├── test └── support │ ├── MockServer.js │ └── randomByteStream.js └── todo.txt /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenflow/node-fast-download/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .idea 4 | temp -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenflow/node-fast-download/HEAD/README.md -------------------------------------------------------------------------------- /lib/FastDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenflow/node-fast-download/HEAD/lib/FastDownload.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenflow/node-fast-download/HEAD/package.json -------------------------------------------------------------------------------- /test/support/MockServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenflow/node-fast-download/HEAD/test/support/MockServer.js -------------------------------------------------------------------------------- /test/support/randomByteStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenflow/node-fast-download/HEAD/test/support/randomByteStream.js -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenflow/node-fast-download/HEAD/todo.txt --------------------------------------------------------------------------------