A real-time chat room web application built with socket.io and Node.js. Chat now: https://tsoliang-chat-room.herokuapp.com/
- To install app dependencies, simply:
$ npm install
- Start the app at localhost:3000:
$ npm start
Dockerfile is also provided. To run this app in a container, just simply install Docker first, then:
- Build the docker image:
$ docker build -t tsoliang/chat-room .
- Run the app in a docker container and expose the container port to local port 3000:
$ docker run -p 3000:3000 -d tsoliang/chat-room