Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siavashg87/poker-odds-calc
Fastest and most accurate node module for calculating odds of poker games Texas Hold'em, Texas Shortdeck/Sixplus and Omaha.
https://github.com/siavashg87/poker-odds-calc
equity odds-calculator odds-calculattor omaha poker shortdeck sixplus-holdem texas-holdem
Last synced: 12 days ago
JSON representation
Fastest and most accurate node module for calculating odds of poker games Texas Hold'em, Texas Shortdeck/Sixplus and Omaha.
- Host: GitHub
- URL: https://github.com/siavashg87/poker-odds-calc
- Owner: siavashg87
- License: mit
- Created: 2019-07-12T13:38:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T13:00:57.000Z (10 months ago)
- Last Synced: 2024-03-14T23:23:44.414Z (8 months ago)
- Topics: equity, odds-calculator, odds-calculattor, omaha, poker, shortdeck, sixplus-holdem, texas-holdem
- Language: TypeScript
- Homepage:
- Size: 70.3 KB
- Stars: 73
- Watchers: 1
- Forks: 28
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Poker Odds Calc
[![Build Status](https://travis-ci.org/rundef/node-poker-odds-calculator.svg?branch=master)](https://travis-ci.org/rundef/node-poker-odds-calculator)
[![Node version required](https://img.shields.io/node/v/poker-odds.svg)](https://www.npmjs.com/package/poker-odds-calc)
[![Latest Stable Version](https://img.shields.io/npm/v/poker-odds-calc.svg)](https://www.npmjs.com/package/poker-odds-calc)Fastest and most accurate node module for calculating odds of poker games Texas Hold'em, Texas Shortdeck/Sixplus and Omaha.
## Installation
```bash
npm install -g poker-odds-calc
```### Usage
```bash
poker-odds-calc -p AdKh -p AcKh -b 5sTd9c# options
-g, --game texas_holdem # Select between texas_holdem, shortdeck_holdem and omaha. Default texas_holdem.
-b, --board 5sTd9cTh # Define community cards.
-p, --player AcKh # Define any number of player hand.
-l, --limit 1000 # Limit number of iterations. Default 100,000.
-e, --exhaustive # Run all possible board combinations, regardless limit option.
-d, --dead 2s2d # Dead card(s) to exclude from calculation.
--tripsbeatstraight # Option only available for -g shortdeck_holdem
-h, --help # Show help
```poker-odds-calc -p QsKs -p QdKd -b JsTs5hTd
![--example](https://i.imgur.com/CDxNZcz.png)
## API Usage
Let's take the previous example, but use the API instead:
```js
import {TexasHoldem, SixPlusHoldem, Omaha} from './index';const Table = new TexasHoldem();
Table
.addPlayer(["Qs", "Ks"])
.addPlayer(["Qd", "Kd"]).setBoard(["Js","Ts","5h","Td"])
// or
.boardAction(board => {
board
.setFlop(["Js", "Ts", "5h"])
.setTurn("Td")
})
;const Result = Table.calculate();
Result.getPlayers().forEach(player => {
console.log(`${player.getName()} - ${player.getHand()} - Wins: ${player.getWinsPercentageString()} - Ties: ${player.getTiesPercentageString()}`);
});console.log(`Board: ${Result.getBoard()}`);
console.log(`Iterations: ${Result.getIterations()}`);
console.log(`Time takes: ${Result.getTime()}ms`);// Outputs:
// Player #1 - QsKs - Wins: 20.45% - Ties: 79.55%
// Player #2 - QdKd - Wins: 0.00% - Ties: 79.55%
// Board: JsTs5hTd
// Iterations: 44
// Time takes: 8ms```
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.