Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/autumnchris/rock-paper-scissors

A JavaScript game where the user plays Rock Paper Scissors against the computer. The first to beat the other in five rounds wins.
https://github.com/autumnchris/rock-paper-scissors

babel css css3 html5 javascript rock-paper-scissors sass scss the-odin-project theodinproject vanilla-javascipt vanilla-js vanillajs webpack

Last synced: 2 days ago
JSON representation

A JavaScript game where the user plays Rock Paper Scissors against the computer. The first to beat the other in five rounds wins.

Awesome Lists containing this project

README

        

# Rock Paper Scissors

A JavaScript game where the user plays Rock Paper Scissors against the computer. The first to beat the other in five rounds wins.

Inspired by the [Rock Paper Scissors assignment](https://www.theodinproject.com/paths/foundations/courses/foundations/lessons/rock-paper-scissors) as part of the curriculum for the [Foundations Course](https://www.theodinproject.com/paths/foundations/courses/foundations) on [The Odin Project](https://www.theodinproject.com).

---

## Built With
* Vanilla JS
* JavaScript
* [Sass](http://sass-lang.com)
* CSS3
* HTML5
* [Node.js](https://nodejs.org/en)
* [Webpack](https://webpack.js.org)
* [Babel](https://babeljs.io)
* [Normalize.css](https://necolas.github.io/normalize.css)
* [Font Awesome](https://fontawesome.com)
* [Google Fonts](https://fonts.google.com)

## Demo

View project demo at [https://autumnchris.github.io/rock-paper-scissors](https://autumnchris.github.io/rock-paper-scissors).

## Instructions

After forking and cloning, navigate to the repository in your command line and install the NPM packages:
```
npm install
```

Run the following script in your command line to run the application:
```
npm start
```

Once the server is running, go to `http://localhost:8080` in your browser.

Before committing any changes, run the following script to update your static files for production:
```
npm run build
```