
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
unique-random
Advanced tools
Generate random numbers that are consecutively unique
Useful for things like slideshows where you don't want to have the same slide twice in a row.
npm install unique-random
import {consecutiveUniqueRandom} from 'unique-random';
const random = consecutiveUniqueRandom(1, 10);
console.log(random(), random(), random());
//=> 5 2 6
Generate random numbers that are consecutively unique, meaning that each number in the sequence is distinct from the one immediately before it.
Generate random numbers that do not repeat until the entire range has appeared.
consecutiveUniqueRandom and exhaustiveUniqueRandomReturns a function, that when called, will return the generated number.
The returned function is also an iterable which consumes from the same source as the function:
import {exhaustiveUniqueRandom} from 'unique-random';
const random = exhaustiveUniqueRandom(1, 10);
for (const number of random) {
console.log(number);
// The unique numbers will be iterated over infinitely
if (stopCondition) {
break;
}
}
[!NOTE] If
minimumis equal tomaximum, the same value will always be returned.
FAQs
Generate random numbers that are consecutively unique
The npm package unique-random receives a total of 58,210 weekly downloads. As such, unique-random popularity was classified as popular.
We found that unique-random 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.