[Tutorial] Demo app showing realtime functionality with RethinkDB and Pusher Channels
Express app to demonstrate Pusher + RethinkDB for realtime functionality
Clone the project and install dependencies:
git clone https://github.com/shalvah/rethinkdb-pusher-node-demo
cd rethinkdb-pusher-node-demo && npm install
Copy the .env.example
file to a .env
file. Add your Pusher app credentials to this file:
PUSHER_APP_ID=your-app-id
PUSHER_APP_KEY=your-app-key
PUSHER_APP_SECRET=your-app-secret
PUSHER_APP_CLUSTER=your-app-cluster
Start your RethinkDB server by following these instructions.
Start the app:
npm start