next-random
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

next-random

NPM license CircleCI CodeCov

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.

/next-random/

    Package Sidebar

    Install

    npm i next-random

    Weekly Downloads

    0

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • mgthomas99