Calculates the probability of rolling a value given a combination of dice.
https://fwdekker.com/tools/dice/
|
||
---|---|---|
src/main | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
Gruntfile.js | ||
LICENSE | ||
README.md | ||
package-lock.json | ||
package.json |
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 tool in `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the tool in `dist/` for deployment
$> npm run deploy
Publishing
# Log in to npm
$> npm login
# Push to npm
$> npm publish --access public