This is a project example of the game "Rock Paper Scissors" built with React.js.
The architecture is feature-based and follows the recommendation from the article I wrote on Medium: How to better organize your React applications?
It can easily be extended to different versions of the game, such as "Rock Paper Scissors Lizard Spock"
The project has unit tests which only covers the main game features.
You can fork and clone the project and run npm install to install the external dependencies.
This project has been tested with node v7.7.1 and npm 4.1.2.
You have the following CLI commands available:
-
npm run startRuns the project withwebpack-dev-serverand serves it on http://localhost:3333 -
npm run test: Runs unit tests via Karma, in Chrome by default -
npm run lint: Runs ESLint against your source and config files -
npm run buildRuns Webpack build -
npm run serveServes thebuild/folder contents
