The leaderboard website displays scores submitted by different players. It also allows you to submit your score. All data is preserved thanks to the external Leaderboard API service.
- HTML, CSS , JavaScript
- Webpack, Babel
To get a local copy up and running follow these simple example steps.
- Basic Knowledge of HTML and CSS
- Basic knowledge of JavaScript ES6 syntax
- Web browser of your choice
- Integrated development environment (IDE) of your choice (preferrably VScode).
Clone the project using the command below in your command line interface (CLI)
git clone [email protected]:tylher/LeaderBoard.git
Make sure you have node and npm installed on your PC use node -v
and npm -v
on your CLI to check.
install node here if you have not.
To install the packages for this project run:
npm install
To build a bundled version of project, run
npm run build
To run local server, type:
npm start
Run the following commands to catch errors in source codes:
- For html files,
npx hint .
- For css or scss files,
npx stylelint "**/*.{css,scss}"
- For Javascript files,
npx eslint .
To automatically fix some errors, run the following:
- For css or scss files,
npx stylelint --fix "**/*.{css,scss}"
- For Javascript files,
npx eslint --fix .
This project was deployed using githib pages. Learn more
👤 Author1
- GitHub: @tylher
- Twitter: @damolaDev
- LinkedIn: Taiwo Adediran
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
Give a ⭐️ if you like this project!
- Hat tip to anyone whose code was used
- Inspiration
- etc
This project is MIT licensed.