Small, easy-to-understand module for implementing Elo rating.
npm install simple-elo-rating
import { Elo } from "simple-elo-rating";
const [newScoreA, newScoreB] = new Elo()
.playerA(1500)
.playerB(1300)
.setWinnerA()
.calculate()
.getResults();