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

dice-utils

v2.0.1

Published

A set of utilities to parse dice notation strings and roll dice.

Downloads

244

Readme

dice-utils

A library for parsing dice notation strings and rolling dice.

If you're unfamilar with dice notation, you can learn more about it here.

API

dice-utils exports the following named functions:

  • roll, to get results from a dice notation string (ie "2d6")
  • parseDieNotation, to parse dice notiation string
  • rollDie, to roll an individual die

The default export is an object that wraps the three functions.

roll

Requires a dice notation string as a parameter, and returns an object with results and total properties.

  • results [Integer], The results of the individual die rolls.
  • total Integer, The sum of the die results, including any modifiers.

Uses parseDieNotation internally.

import { roll } from 'dice-utils';

roll('2d6');
// {
//  results: [ 2, 3 ],
//  total: 5
// }

roll('2d6+5');
// {
//  results: [ 1, 4 ],
//  total: 10
// }

roll('1d6x10');
// {
//  results: [ 5 ],
//  total: 50
// }

parseDieNotation

Requires a dice notation string as a parameter, and returns an object with the following properties:

  • sides: Integer, The number of sides on the dice to roll.
  • count: Integer, The number of dice to roll.
  • mod: Integer, A postive or negative value that modifies the total result. Default 0.
  • multiply: Boolean, true if the total is to multiplied by mod.
  • dropLow: Boolean, true if the lowest die value should be dropped before calculating the total.
  • success: Integer, -1 if counting low successes, 1 if counting high successes.

Basic Die Notation

This function supports any number of dice of arbitrary sizes, using the convention "XdY" where X is the number of dice to roll and Y is the number of sizes.

"5d10" represents 5 10-sided dice.

Modifiers

Add or subtract from the total

A positive or negative integer can be appended, which will be applied to the total.

"3d6-2" represents 3 6-sided dice, with 2 subtracted from the sum of the results.

Multiply the total

The results can also be multiplied by appending an integer using x or *.

"2d6x10" or "2d6*10" represents 2 6-sided dice, with the sum of the results multiplied by 10.

Drop the lowest die

You can drop the lowest die result with a "-L" modifier.

"4d6-L" represents rolling 4 6-sided dice and dropping the lowest die value, totaling the higher 3.

Count individual successes

You can count individual successes on the die against a high target number using the syntax ">X", where X is the target number. This will count all dice that are greater than or equal to the target number.

"10d6>5" represents 10 6-sided dice, with the total equal to the number of dice that are 5 or greater.

You can count against a low target number using the syntax "<X".

"2d20<10" represents 2 20-sided dice, with the total equal to the number of dice that are 10 or lower.

Fudge Dice

You can roll Fudge dice by specifying "F" for the number of sides.

Fudge dice have an equal probability to return -1, 0, or 1.

"4dF" represents 4 Fudge dice.

rollDie

Requires a parameter sides, which is either an integer or "F", and returns an integer between 1 and sides, or rolls Fudge dice for "F".

import { rollDie } from 'dice-utils';

rollDie(6);
// 5

rollDie('F');
// -1