Skip to content

Commit

Permalink
Adding README.md , package.json and .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
VolosStorm committed Oct 2, 2015
1 parent d12442a commit 39dba8b
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
@@ -0,0 +1,9 @@
# Logs
.logs

# Resources
.resources

# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
39 changes: 39 additions & 0 deletions README.md
@@ -0,0 +1,39 @@
# Just-Dice Node.js Roll Verifier

### Description
This project will help you verify rolls on Just-Dice by using node.js

### Installation
You need to run:
```sh
$ npm install
```

Like in any node.js project and you are ready to go!

### Usage

For more info use:
```sh
$ node JD_Verify.js --help
```

```sh
$ node JD_Verify.js --sseed "5WroZwmskPG0rG9WHkTx0T4PyvPmTx5XOoGd.6Dr9Y6uhNOUTrvCVUkvFyWrltH9" --seed_hash "0cea215b7fc312242c0c949e658ade7995e77484e45ee2e38629d0b18ce32321" --cseed "560224986152234798766370" --nonce "4" --result "49.0089"
```

### Todos

- Add range verifier with data loaded from files
- Add more Code Comments
- Fix bug where unexpectedly sometimes some function return "Cthulhu" ;)

License
----
MIT

**Free Software, Hell Yeah!**

### Donations
If you find this project useful, and wish to donate
- xTitanMrVpRYitDxrNiL7MkUjb6cSnjjF3 (CLAM)
11 changes: 11 additions & 0 deletions package.json
@@ -0,0 +1,11 @@
{
"name": "jd-verify",
"version": "1.0.0",
"description": "Just-Dice.com roll verify module",
"author": "Your Name <you.name@example.org>",
"dependencies": {
"crypto": "*",
"figlet": "*",
"shell-arguments": "*"
}
}

0 comments on commit 39dba8b

Please sign in to comment.