Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 1.74 KB

README.md

File metadata and controls

70 lines (47 loc) · 1.74 KB

Robe-Chat-UI

alt tag

What's inside
  • Webpack for all development (server,hotload etc.) and build (package, optimize, etc.) needs.
  • Babel for writing codes with ES6 syntax and transpiling them browser compatible codes.
  • ESLint for protecting our nice formatted codes.
  • Karma for testing.
  • React for ui.
  • Robe-React-UI for ui components
  • React-Bootstrap for ui components

##For Server Side

robe-chat-server more...

Documentation

Quick Start

1. Get the latest version

You can start by cloning the latest version of robe-chat-ui.

2. Open the Terminal

Go to the location where the project is located

$ cd robe-chat-ui

3. Run npm install

This will install both run-time project dependencies and developer tools listed in package.json file.

$ npm install

4. How to start project in Development Mode

This will start the development server and serve site application.

$ npm start

Open Browser and enter http://127.0.0.1:8082/robe-chat/ui/ (default)

How to Build for Production

If you need just to build the app (without running a dev server), simply run:

$ npm run-script build
How to run Unit Tests.
  • Single Test Run with coverage for production.
$ npm test              # Run unit tests with Mocha
  • Multi Test Run without coverage for development.
$ npm run testd         # Run unit tests with Mocha