Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/autumnchris/rock-paper-scissors
- Owner: autumnchris
- Created: 2018-02-05T22:07:03.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T01:20:00.000Z (4 days ago)
- Last Synced: 2025-02-17T02:25:46.927Z (4 days ago)
- Topics: babel, css, css3, html5, javascript, rock-paper-scissors, sass, scss, the-odin-project, theodinproject, vanilla-javascipt, vanilla-js, vanillajs, webpack
- Language: JavaScript
- Homepage: https://autumnchris.github.io/rock-paper-scissors
- Size: 123 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```