Skip to content

Latest commit

 

History

History
45 lines (42 loc) · 772 Bytes

README.md

File metadata and controls

45 lines (42 loc) · 772 Bytes

Dating chat

About

This is simple chat application on NodeJS, ExpressJS and Socket.io, written with TypeScript and Angular 4.

Installation

Clone the repo and install npm dependencies:

$ git clone https://github.com/DmitriyNoa/dating-chat.git
$ cd dating-chat
$ npm install

Running locally

Start MongoDB

$ mongod

Run socket service

$ npm start

Run chat front-end application in new terminal window

$ npm run start-client

Open http://localhost:4200 in your browser.

Running on production

$ npm run build
$ npm run start-production

Tests

Run socket service tests

$ npm test

Run front-end chat application unit tests

$ npm run client-test

Run end to end tests

$ npm run e2e