
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
redis-rank
Advanced tools
⚠️ For ioredis <= 4.x use redis-rank@2.1.2
, for ioredis >= 5.x use the latest version.
$ npm install redis-rank ioredis
Redis 2.6.12 or newer is required. The package ioredis is a peer dependency and must be installed separately.
ES5
const Redis = require('ioredis');
const { Leaderboard, PeriodicLeaderboard, LeaderboardMatrix } = require('redis-rank');
ES6
import { Redis } from 'ioredis';
import { Leaderboard, PeriodicLeaderboard, LeaderboardMatrix } from 'redis-rank';
You will have to provide a ioredis connection. See here for more information.
const client = new Redis({
host: "127.0.0.1",
port: 6379
});
You are ready, now read one of the examples linked below!
A Redis server in localhost without password is expected. You can create one easily with Docker like so:
docker run -p 6379:6379 -t -i --rm redis:latest
⚠️ Note: The database #15 will be flushed ⚠️
Run tests:
npm test
I tried with ioredis-mock but I experienced some issues with Lua scripts so we have to rely on a real Redis server (which I think is better anyway).
MIT. See LICENSE.
FAQs
Manage real-time leaderboards using Redis
The npm package redis-rank receives a total of 618 weekly downloads. As such, redis-rank popularity was classified as not popular.
We found that redis-rank demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.