
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
A literal implementation of the Glicko-2 rating system in TypeScript. Got it?
A literal implementation of the Glicko-2 rating system in TypeScript. Got it?
The make script generates an AMD module from the TypeScript sources. The npm package ( npm install falseskill )
uses amdefine to expose it as a CommonJS module.
// Defaults
falseskill.Tau = 0.75
falseskill.InitialRating = 1500
falseskill.InitialDeviation = 350
falseskill.InitialVolatility = 0.06
falseskill.newRating() : PlayerRating
falseskill.calculateRating(player : PlayerRating, opponents : OpponentRating[], outcomes : number[]) : PlayerRating
Or update in place:
falseskill.updateRating(player : PlayerRating, opponents : OpponentRating[], outcomes : number[]) : void
falseskill.calculateRatingDidNotCompete(player : PlayerRating) : PlayerRating
Or update in place:
falseskill.updateRatingDidNotCompete(player : PlayerRating) : void
falseskill.copyRating(from : PlayerRating, to : PlayerRating) : PlayerRating
falseskill.deriveMatches(rankings : Ranking[], filterBy? : PlayerRating) : Match[]
falseskill.updateRatings(matches : Match[]) : void
falseskill.calculateMatchQuality(player : PlayerRating, opponents : OpponentRating[]) : MatchQuality
falseskill.Loss = 0.0
falseskill.Draw = 0.5
falseskill.Win = 1.0
interface OpponentRating {
rating : number,
deviation : number
}
interface PlayerRating extends OpponentRating {
volatility : number
}
interface Ranking extends Array<PlayerRating> { }
interface Match {
player : PlayerRating,
opponents : OpponentRating[],
outcomes : number[]
}
interface MatchQuality {
qualities : number[],
min : number,
max : number,
avg : number,
med : number,
str : number
}
See falseskill.ts for detailed documentation.
License: Apache License, Version 2.0
FAQs
A literal implementation of the Glicko-2 rating system in TypeScript. Got it?
The npm package falseskill receives a total of 2 weekly downloads. As such, falseskill popularity was classified as not popular.
We found that falseskill demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.