├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── compose.yaml ├── lib ├── adapter.ts ├── index.ts └── util.ts ├── package.json ├── test ├── connection-state-recovery.ts ├── index.ts └── util.ts └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/compose.yaml -------------------------------------------------------------------------------- /lib/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/lib/adapter.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/lib/util.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/package.json -------------------------------------------------------------------------------- /test/connection-state-recovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/test/connection-state-recovery.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/test/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketio/socket.io-redis-streams-adapter/HEAD/tsconfig.json --------------------------------------------------------------------------------