Popularity
2.1
Declining
Activity
5.0
Growing
115
7
15
Programming language: JavaScript
License: MIT License
Latest version: v2.1.0
unique-random alternatives and similar modules
Based on the "Number" category.
Alternatively, view unique-random alternatives based on common mentions on social networks and blogs.
SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
Promo
surveyjs.io

Do you think we are missing an alternative of unique-random or a related project?
README
unique-random
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.
Install
$ npm install unique-random
Usage
import uniqueRandom from 'unique-random';
const random = uniqueRandom(1, 10);
console.log(random(), random(), random());
//=> 5 2 6
API
uniqueRandom(minimum, maximum)
Returns a function, that when called, will return a random number that is never the same as the previous.
Related
- unique-random-array - Get consecutively unique elements from an array
- random-int - Generate a random integer
- random-float - Generate a random float
- random-item - Get a random item from an array
- random-obj-key - Get a random key from an object
- random-obj-prop - Get a random property from an object
- unique-random-at-depth - This module with an optional depth argument
- crypto-random-string - Generate a cryptographically strong random string