npm install
npm run serve
npm run build
npm run lint
Note to self (to implement later): average distance per attacker_name for players who have at least 500 K+D
SELECT AVG(distance) as 'distance', attacker_name, COUNT(map) as deathKillCount FROM data GROUP BY attacker_name HAVING `deathKillCount` > 500 ORDER BY `distance` DESC LIMIT 400;