npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

random-lib

v3.0.0

Published

A library that wraps the Node.js crypto functions to create random floats and bounded integers with ease.

Downloads

339

Readme

random-lib

Build Status npm install js-standard-style

A library that wraps the Node.js crypto functions to create random floats and bounded integers with ease.

Warning: I am not a cryptographer, or any sort of random number expert. An audit would be greatly appreciated.

Version 3.0 of this module brings a new API and very different performance characteristics for integers; however it also removes bias which existed in older versions of this module.

Installation

To install the module for use in your projects:

npm install random-lib

Usage

var rand = require('random-lib')
var opts = {
  min: 1,
  max: 10,
  num: 10
}

// get 10 random integers, between 1 and 10
rand.ints(opts, function(err, results) {
  console.log(results) // [ 1, 1, 8, 9, 1, 4, 1, 6, 3, 8 ]
})

// or, with promises
rand.ints(opts).then(function(results) {
  console.log(results) // [ 2, 8, 4, 5, 2, 1, 7, 7, 8, 9 ]
})

// or synchronously
var results = rand.intsSync(opts)
console.log(results) // [ 2, 1, 3, 8, 9, 7, 2, 4, 4, 7 ]

Options are accepted, but are different if you're asking for floats or integers.

Options

Options are passed via an object; what's shown below are the defaults, and nothing is required.


// for integers; what's shown are the defaults.
var options = {
  num: 10,  // number of ints to receive
  min: 0,  // minimum bound (inclusive)
  max: Number.MAX_SAFE_INT,  // maximum bound (exclusive),
  unique: false  // receive only unique ints; only supported when async
}
rand.ints(options, function(err, results) {
  console.log(results)
})

//for floats; what's shown are the defaults.
var options = {
  num: 10,  // number of floats to receive
  unique: false  // receive only unique floats; only supported when async
}
rand.floats(options, function(err, results) {
  console.log(results)
})

API

When calling any function, omitting a callback will cause the function to return a Promise.

  • ints([options], [callback (err, results)]): number[]
    Get an array of random integers.
  • int([options], [callback (err, result)]): number
    Convenience function to get a single random integer.
  • floats([options], [callback (err, results)]): number[]
    Get an array of random floats between 0 and 1.
  • float([options], [callback (err, results)]): number
    Convenience function to get a single random float between 0 and 1.

Synchronous Methods

Synchronous methods take the same options as their async counterparts, except for the unique option which is not supported while synchronous.

  • intsSync([options]): number[]
  • intSync([options]): number
  • floatsSync([options]): number[]
  • floatSync([options]): number

Notes

  • Using the synchronous interface calls crypto.randomBytes synchronously; please be sure to read the documentation for your Node.js version to understand the performance implications.

Contributing

Feel free to send pull requests! I'm not picky, but would like the following:

  1. Write tests for any new features, and do not break existing tests.
  2. Follow existing code style.
  3. Be sure to point out any changes that break API.
  4. Do not bump package.json version or add new dependencies without discussing in an issue first.

History

See CHANGELOG for details.

License

MIT. See LICENSE for details.