├── .editorconfig ├── .github └── workflows │ └── run-test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── benchmark.ts ├── eslint.config.js ├── make-docs.sh ├── package.json ├── release.sh ├── src ├── Channel.ts ├── Connection.ts ├── Consumer.ts ├── RPCClient.ts ├── SortedMap.ts ├── codec.ts ├── exception.ts ├── index.ts ├── normalize.ts ├── overrides.css ├── typedoc-plugin-versions.ts └── util.ts ├── test ├── SortedMap.ts ├── behavior.ts ├── consumer.ts ├── options.ts ├── rpc.ts ├── stream-helpers.ts └── util.ts ├── tsconfig.build.json ├── tsconfig.json └── typedoc.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/run-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/.github/workflows/run-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | /lib 4 | /node_modules 5 | /docs 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/benchmark.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/eslint.config.js -------------------------------------------------------------------------------- /make-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/make-docs.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/package.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/release.sh -------------------------------------------------------------------------------- /src/Channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/Channel.ts -------------------------------------------------------------------------------- /src/Connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/Connection.ts -------------------------------------------------------------------------------- /src/Consumer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/Consumer.ts -------------------------------------------------------------------------------- /src/RPCClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/RPCClient.ts -------------------------------------------------------------------------------- /src/SortedMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/SortedMap.ts -------------------------------------------------------------------------------- /src/codec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/codec.ts -------------------------------------------------------------------------------- /src/exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/exception.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/normalize.ts -------------------------------------------------------------------------------- /src/overrides.css: -------------------------------------------------------------------------------- 1 | pre { 2 | white-space: nowrap; 3 | overflow-x: auto; 4 | } 5 | -------------------------------------------------------------------------------- /src/typedoc-plugin-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/typedoc-plugin-versions.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/SortedMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/test/SortedMap.ts -------------------------------------------------------------------------------- /test/behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/test/behavior.ts -------------------------------------------------------------------------------- /test/consumer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/test/consumer.ts -------------------------------------------------------------------------------- /test/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/test/options.ts -------------------------------------------------------------------------------- /test/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/test/rpc.ts -------------------------------------------------------------------------------- /test/stream-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/test/stream-helpers.ts -------------------------------------------------------------------------------- /test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/test/util.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cody-greene/node-rabbitmq-client/HEAD/typedoc.json --------------------------------------------------------------------------------