New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

next-random

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

next-random

A seedable pseudorandom number generator object.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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.

Keywords

random

FAQs

Package last updated on 28 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts