graphql-redis-realtime-chat
graphql-redis-realtime-chat copied to clipboard
💬 Realtime Chat Server using GraphQL Subscriptions and Redis PubSub (Unmaintained)
Realtime Chat Server using GraphQL Subscriptions and Redis PubSub
Abstruct
- This is the realtime chat server using GraphQL Subscriptions.
- GraphQL server is writtern in Golang.
- GraphQL server uses Redis PubSub in order to share messages on multiple servers.
Explanation Entry
GraphQL SubscriptionsとRedis PubSubを使ってリアルタイムチャットサーバーを作る
Getting started
- Run GraphQL server.
git clone https://github.com/p1ass/graphql-redis-realtime-chat.git
cd graphql-redis-realtime-chat
docker-compose up
-
Open
localhost:8080
and try GraphQL Playground. -
You can also try it using a Nuxt.js client.
cd frontend
yarn
yarn dev
or
cd frontend
npm install
npm run dev