@nothingrandom/roll

1.0.5 • Public • Published

roll

Travis (.com)

A dice roller / random number generator

Install

$ yarn global add @nothingrandom/roll
$ npm install --global @nothingrandom/roll

Usage (CLI)

$ roll --help

  Usage
    $ roll <dice to roll>

  Example
    $ roll d20 # rolls one die with 20 sides
    1 - 20

    $ roll 2d20 # rolls two dice with 20 sides each
    2 - 40

    $ roll 2d20+d3 # rolls two dice with 20 sides and one die with 3 sides
    3 - 43

Usage (require in JS)

const Roll = require('@nothingrandom/roll');
const roll = new Roll();

roll.roll('2d20').result;

// roll.roll(INPUT) will return
// {
//   rolled: number,
//   average: number[],
//   result: number,
// }

License

MIT © Benjamin Hollway

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.5
    0
    • latest

Version History

Package Sidebar

Install

npm i @nothingrandom/roll

Weekly Downloads

0

Version

1.0.5

License

MIT

Unpacked Size

5.96 kB

Total Files

7

Last publish

Collaborators

  • nothingrandom