├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── common.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | config.js 3 | *test* 4 | *tmp* 5 | .DS_Store 6 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeding/aria2b/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeding/aria2b/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeding/aria2b/HEAD/app.js -------------------------------------------------------------------------------- /common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeding/aria2b/HEAD/common.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeding/aria2b/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeding/aria2b/HEAD/yarn.lock --------------------------------------------------------------------------------