https://github.com/amorriscode/critical-royale-dice-roller
A simple and clean online dice roller for Dungeons & Dragons
https://github.com/amorriscode/critical-royale-dice-roller
dice dungeons-and-dragons javascript nextjs
Last synced: about 2 months ago
JSON representation
A simple and clean online dice roller for Dungeons & Dragons
- Host: GitHub
- URL: https://github.com/amorriscode/critical-royale-dice-roller
- Owner: amorriscode
- Created: 2020-05-23T22:14:09.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T06:47:56.000Z (over 3 years ago)
- Last Synced: 2025-09-25T12:37:54.667Z (11 months ago)
- Topics: dice, dungeons-and-dragons, javascript, nextjs
- Language: JavaScript
- Homepage: https://roll.criticalroyale.com
- Size: 1.72 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Critical Royale's Wonderfully Fantastic Virtual Dice Roller
This project is an online dice roller for Dungeons & Dragons or any tabletop roleplaying game you enjoy.
## Getting Started
Install those sweet dependencies:
```bash
npm i
# or
yarn
```
Then run the dev server:
```bash
npm run dev
# or
yarn dev
```
## True Randomness
> Most random numbers used in computer programs are pseudo-random, which means they are generated in a predictable fashion using a mathematical formula.
This wouldn't work well for dice now would it? To combat this, this project uses [RANDOM.ORG](https://www.random.org/) which uses _atmospheric noise_ for true randomness. Pretty cool, right? You'll need an API key from them to use in development.
For fun, you can [learn more about randomness and random numbers](https://www.random.org/randomness).