https://github.com/arthurdenner/player-vs-monster
A simple game to demonstrate how to get started with ReactJS. See the final result here: https://player-vs-monster.netlify.com/
https://github.com/arthurdenner/player-vs-monster
game monster player react reactjs
Last synced: 3 months ago
JSON representation
A simple game to demonstrate how to get started with ReactJS. See the final result here: https://player-vs-monster.netlify.com/
- Host: GitHub
- URL: https://github.com/arthurdenner/player-vs-monster
- Owner: arthurdenner
- Created: 2018-05-13T20:49:41.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-13T21:59:44.000Z (about 7 years ago)
- Last Synced: 2025-01-23T19:53:07.535Z (5 months ago)
- Topics: game, monster, player, react, reactjs
- Language: HTML
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# player-vs-monster
This project was build to demonstrate how to get started with ReactJS.
I believe it contains a lot of the basics: state, props, updating parent's state through children components, outputting arrays and interacting with events.
## Branches
This project contains three branches:
- [master](https://github.com/arthurdenner/player-vs-monster): Uses a single HTML file to create the whole game, a truly "getting started";
- [using-create-react-app](https://github.com/arthurdenner/player-vs-monster/tree/using-create-react-app): Uses the [create-react-app CLI](https://github.com/facebook/create-react-app) to build the game using ES modules. A lot more organized and a little more advanced;
- [improving-code](https://github.com/arthurdenner/player-vs-monster/tree/improving-code): Besides using the create-react-app CLI, it uses functional/stateless components and the prop-types package.