This is a mirror for the Hitman 3 speedrun.com leaderboard. It is intended as a backup and/or supplement to the speedrun.com leaderboards, not as a replacement. Backups of important Hitman 3 leaderboards will be hosted here, as will guides.
The site automatically updates itself periodically to match the current Hitman 3 leaderboard, which is possible through use of speedrun.com's API (more info below).
Hitruns also tends to load faster and is more mobile-friendly than the original Hitman 3 leaderboard on speedrun.com (due to cutting out a lot of unnecessary features) which is a further bonus.
For a quick summary of the top times of each Hitman 3 speedrun category, as well as sum-of-bests, check out Hitruns Top Times.
- Used Next.JS serverless functions (getStaticProps, to be precise) for the backend.
- Next.JS and React Bootstrap Frameworks used for front-end design (particularly for design of navbar, dropdown menus).
- Pulled data from speedrun.com's RESTFUL api (https://github.com/speedruncomorg/api/tree/master/version1)
- Deployed on Vercel
You will need NodeJS version 18
or newer
How to change NodeJS version:
- See https://github.com/coreybutler/nvm-windows or https://github.com/nvm-sh/nvm
nvm install 18
nvm use 18
yarn install
to install required node modules.yarn dev
to open the dev environment to preview the website (http://localhost:3000).yarn build
to build the website locally (needed if you want to test the search function before deployment).