The first CSC Project Series project. A Chat program to teach the basics of networking
Now with Slack, TravisCI and Heroku integration.
- React.JS as frontend framework, with server-sided rendering.
- Node.js + Express + MongoDB as backend.
- Socket.io as realtime framework.
- Mocha + Chai as unit testing framework.
- Heroku as deployment.
Note, (...) means it's a directory.
├── app (...)
│ ├── components (...) --> react components here
│ └── main.js --> file to be bundled on client side
├── gulpfile.js --> gulp configuration file, needed for bundling
├── node_modules (...) --> dependencies
├── package.json
├── public (...)
└── css (...) --> folder containing stylesheets
│ └── main.js --> bundled file
├── server.js --> app entry point, launches express server.
├── test --> folder containing tests and test helper engine
│ ├── components (...) --> tests for each component go here
│ └── test_helper.js --> test helper engine
└── views (...) --> folder containing main views, jade templates```