https://github.com/pellizzetti/github-battle
Project of the React.js Fundamentals course
https://github.com/pellizzetti/github-battle
didactic react reactjs
Last synced: 2 months ago
JSON representation
Project of the React.js Fundamentals course
- Host: GitHub
- URL: https://github.com/pellizzetti/github-battle
- Owner: pellizzetti
- Created: 2016-12-22T18:57:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-10T18:13:09.000Z (over 9 years ago)
- Last Synced: 2025-03-02T19:39:47.857Z (over 1 year ago)
- Topics: didactic, react, reactjs
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Battle
This is a project of the React.js Fundamentals course.
Enter two GitHub usernames to battle against each other.
The data of each user will be fetched from GitHub API. A simple calculation will be made to determine the winner, the loser or if a tie happened.
## Requirements
The following items have to be installed and running:
* Node.js
* npm
## Installing
Clone the repository:
```
git clone https://github.com/pellizzetti/github-battle && cd github-battle
```
Installing Dependencies:
```
npm install
```
## Running
```
npm start
```
This will start a development server that provides live reloading, listening on connections from `localhost` on port `8080`.
## Building
To run a production bundle:
```
npm run production
```
## License
The MIT License (MIT)
Copyright (c)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.