├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .nvmrc ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── lib ├── keys │ ├── queue.js │ └── worker.js ├── parsers │ └── json.js ├── queue.js ├── redis.js ├── taskman.js ├── util.js └── worker.js ├── package.json ├── test ├── keys │ ├── queue.js │ └── worker.js ├── parsers │ └── json.js ├── queue.js ├── redis.js ├── taskman.js ├── util.js └── worker.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | tmp/ -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/lib/**/*.js -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/index.js -------------------------------------------------------------------------------- /lib/keys/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/keys/queue.js -------------------------------------------------------------------------------- /lib/keys/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/keys/worker.js -------------------------------------------------------------------------------- /lib/parsers/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/parsers/json.js -------------------------------------------------------------------------------- /lib/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/queue.js -------------------------------------------------------------------------------- /lib/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/redis.js -------------------------------------------------------------------------------- /lib/taskman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/taskman.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/util.js -------------------------------------------------------------------------------- /lib/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/lib/worker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/package.json -------------------------------------------------------------------------------- /test/keys/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/keys/queue.js -------------------------------------------------------------------------------- /test/keys/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/keys/worker.js -------------------------------------------------------------------------------- /test/parsers/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/parsers/json.js -------------------------------------------------------------------------------- /test/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/queue.js -------------------------------------------------------------------------------- /test/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/redis.js -------------------------------------------------------------------------------- /test/taskman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/taskman.js -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/util.js -------------------------------------------------------------------------------- /test/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/test/worker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregberge/node-taskman/HEAD/yarn.lock --------------------------------------------------------------------------------