├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── LICENSE.txt ├── __tests__ └── client.ts ├── example.ts ├── package.json ├── readme.md ├── src └── lib │ └── client.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | dist 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /__tests__/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/__tests__/client.ts -------------------------------------------------------------------------------- /example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/example.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/readme.md -------------------------------------------------------------------------------- /src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/src/lib/client.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actionhero/actionhero-node-client/HEAD/tsconfig.json --------------------------------------------------------------------------------