Skip to content

alexmngn/react-rock-paper-scissors

Repository files navigation

react-rock-paper-scissors

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.

Helpful commands

You have the following CLI commands available:

  • npm run start Runs the project with webpack-dev-server and 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 build Runs Webpack build

  • npm run serve Serves the build/ folder contents