Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpedroschmitz/volley
Volleyball scoreboard application developed with Next.js
https://github.com/jpedroschmitz/volley
nextjs react scoreboard volleyball
Last synced: 13 days ago
JSON representation
Volleyball scoreboard application developed with Next.js
- Host: GitHub
- URL: https://github.com/jpedroschmitz/volley
- Owner: jpedroschmitz
- Created: 2020-07-06T00:38:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-26T22:36:26.000Z (almost 3 years ago)
- Last Synced: 2024-08-04T14:12:20.384Z (3 months ago)
- Topics: nextjs, react, scoreboard, volleyball
- Language: TypeScript
- Homepage:
- Size: 1.36 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- Awesome-NextJs - Volleyball scoreboard application
README
# Volley
Volley is a volleyball scoreboard application developed with Next.js to a college project.
![Image showing demo](.github/readme.png)
## Getting Started
First, clone this repository and install the dependencies with `npm install` or `yarn`.
Then you can start the development server.
```bash
npm run dev
# or
yarn dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Run Jest Tests
```
npm test
```_ps: The best way to test an application like this is by doing e2e test with Cypress.
As I didn't have the time to do it, I have just used `jest` with `testing-library` and created small tests to check if title, winner and other things were being displayed._