Skip to content

Small, easy-to-understand module for implementing Elo rating

Notifications You must be signed in to change notification settings

gabrielbrunop/simple-elo-rating

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Elo Rating

Small, easy-to-understand module for implementing Elo rating.

Installation

npm install simple-elo-rating

Usage

import { Elo } from "simple-elo-rating";

const [newScoreA, newScoreB] = new Elo()
	.playerA(1500)
	.playerB(1300)
	.setWinnerA()
	.calculate()
	.getResults();

About

Small, easy-to-understand module for implementing Elo rating

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published