Calculates the probability of rolling a value given a combination of dice. https://fwdekker.com/tools/dice/
Go to file
Florine W. Dekker f2559fd008
Add Goatcounter and relocate some resources
2021-04-22 12:59:21 +02:00
src/main Add Goatcounter and relocate some resources 2021-04-22 12:59:21 +02:00
.editorconfig Add version number and best practices 2020-03-14 12:37:33 +01:00
.gitattributes Migrate to npm, use template package 2020-05-05 21:59:03 +02:00
.gitignore Migrate to npm, use template package 2020-05-05 21:59:03 +02:00
Gruntfile.js Add Goatcounter and relocate some resources 2021-04-22 12:59:21 +02:00
LICENSE Add LICENSE, footer, and semantic HTML 2019-06-10 01:33:54 +02:00
README.md Migrate to npm, use template package 2020-05-05 21:59:03 +02:00
package-lock.json Use new template system, bump to chart.js 3 2021-04-18 18:13:23 +02:00
package.json Add Goatcounter and relocate some resources 2021-04-22 12:59:21 +02:00

README.md

Dice

Given a set of dice, calculates the probability density graph of each value that can be rolled.

Development

Requirements

Setting up

# Install dependencies (only needed once)
$> npm ci

Building

# Build the template in `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the template in `dist/` for deployment
$> npm run deploy

Publishing

# Log in to npm
$> npm login
# Push to npm
$> npm publish --access public