We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I dont get it. I installed via "npm install node-poker" and just want to start the example with
var poker = require('node-poker');
var table = new poker.Table(50,100,2,10,100,1000);
table.AddPlayer('bob',1000) table.AddPlayer('jane',1000) table.AddPlayer('dylan',1000) table.AddPlayer('john',1000)
table.StartGame()
and it says Object #
Pls help me :-(
The text was updated successfully, but these errors were encountered:
It sounds like the poker lib is not getting read in. Try changing the first line of example.js to
example.js
var poker = require('./lib/node-poker');
instead of
var poker = require('./node-poker');
Sorry, something went wrong.
But the table was created, and i can log the table with "console.log(table);"
Same problem here, "console.log(table);" return me something. But I have still "Object #
No branches or pull requests
I dont get it. I installed via "npm install node-poker" and just want to start the example with
var poker = require('node-poker');
var table = new poker.Table(50,100,2,10,100,1000);
table.AddPlayer('bob',1000)
table.AddPlayer('jane',1000)
table.AddPlayer('dylan',1000)
table.AddPlayer('john',1000)
table.StartGame()
and it says Object #
has no method 'StartGame'Pls help me :-(
The text was updated successfully, but these errors were encountered: