next-random
v1.0.0
Published
A seedable pseudorandom number generator object.
Downloads
10
Readme
next-random
Seeded pseudorandom number generator object implementation for NodeJS, written in TypeScript with type definitions and 100% code coverage.
Usage
npm install random2 --save
Use it in your JS like so:
var nextrandom = require("next-random");
var myRandom = new nextrandom.Random();
myRandom.next(); // 0.4939263087001966
Or create a seeded instance:
var myRandom = new Random(42);
myRandom.next(); // 0.19240476780557803
Build
The project's package.json
has useful scripts for building the project:
npm install
npm run build
npm test
Typings
Typescript definitions are included with the package.
License
See the LICENSE
file for license information.