Popularity
1.3
Stable
Activity
2.6
Stable
35
5
8
Programming language: JavaScript
License: MIT License
Tags:
Number
Math
Generator
Generate
Random
Rand
Point
Num
Gen
Min
Max
Randomize
Real
Floating
Float
Latest version: v2.0.0
random-float alternatives and similar modules
Based on the "Number" category.
Alternatively, view random-float alternatives based on common mentions on social networks and blogs.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of random-float or a related project?
README
random-float 
Generate a random float
Install
$ npm install random-float
Usage
const randomFloat = require('random-float');
randomFloat(5);
//=> 4.401887938147411
randomFloat(10, 100);
//=> 72.34217455144972
API
randomFloat(maximum?)
Returns an float from 0
to maximum
.
randomFloat(minimum, maximum)
Returns an float from minimum
to maximum
.
minimum
Type: number
\
Default: 0
Minimum float to return.
maximum
Type: number
\
Default: 1
Maximum float to return.
Related
- random-int - Generate a random integer
- random-item - Get a random item from an array
- random-boolean - Get a random boolean
- random-obj-key - Get a random key from an object
- random-obj-prop - Get a random property from an object
- unique-random - Generate random numbers that are consecutively unique
- unique-random-array - Get consecutively unique elements from an array
- crypto-random-string - Generate a cryptographically strong random string