Skip to content

tsoliangwu0130/chat-room

Repository files navigation

Chat Room Build Status MIT licensed

A real-time chat room web application built with socket.io and Node.js. Chat now: https://tsoliang-chat-room.herokuapp.com/

Getting Started

Quick Start

  1. To install app dependencies, simply:
$ npm install
  1. Start the app at localhost:3000:
$ npm start

Docker

Dockerfile is also provided. To run this app in a container, just simply install Docker first, then:

  1. Build the docker image:
$ docker build -t tsoliang/chat-room .
  1. 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