https://github.com/kevindmorris/redis-cli-chat
A simple two-way command-line chat application built with Node.js and Redis Pub/Sub.
https://github.com/kevindmorris/redis-cli-chat
cli nodejs pubsub readline redis
Last synced: 2 months ago
JSON representation
A simple two-way command-line chat application built with Node.js and Redis Pub/Sub.
- Host: GitHub
- URL: https://github.com/kevindmorris/redis-cli-chat
- Owner: kevindmorris
- License: mit
- Created: 2025-07-31T17:55:56.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-07-31T18:56:38.000Z (11 months ago)
- Last Synced: 2025-08-14T01:38:14.999Z (10 months ago)
- Topics: cli, nodejs, pubsub, readline, redis
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 💬 Redis CLI Chat
A simple two-way command-line chat application built with Node.js and Redis Pub/Sub.
## ⚙️ Requirements
- Node.js 18+ 🧑💻
- Docker 🐳 (or some Redis server to connect)
## 🚀 Usage
1. Clone the repository
2. Install dependencies
```bash
npm i
```
3. Start a Redis server with Docker
```bash
docker run --name redis -p 6379:6379 -d redis
```
4. Join the chat
```bash
npm run chat
# or
node chat.js
```