Gathering detailed insights and metrics for tambola
Gathering detailed insights and metrics for tambola
Gathering detailed insights and metrics for tambola
Gathering detailed insights and metrics for tambola
npm install tambola
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
GPL-3.0 License
5 Stars
22 Commits
2 Forks
1 Watchers
5 Branches
2 Contributors
Updated on Jul 13, 2025
Latest Version
4.1.0
Package Id
tambola@4.1.0
Unpacked Size
68.52 kB
Size
21.76 kB
File Count
6
NPM Version
8.19.4
Node Version
16.20.2
Published on
Jul 13, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
The Ultimate Tambola/Housie Ticket Generator for Node.js 🚀
Generate professional Tambola tickets and draw sequences with zero dependencies, lightning-fast performance, and 100% official game rule compliance. Perfect for game organizers, developers, and anyone who needs reliable Tambola ticket generation.
1npm install tambola
1const tambola = require('tambola'); 2 3// Generate a professional Tambola ticket 4const ticket = tambola.generateTicket(); 5console.log(ticket); 6// Output: [[2, 0, 22, 0, 0, 56, 0, 71, 81], [0, 13, 0, 34, 45, 0, 65, 0, 88], [7, 19, 0, 39, 0, 59, 67, 0, 0]] 7 8// Generate a random draw sequence (1-90) 9const sequence = tambola.getDrawSequence(); 10console.log(sequence); 11// Output: [37, 2, 89, 15, 73, 41, 8, 56, 23, ...]
1# Generate a ticket 2npx tambola ticket 3 4# Generate 5 tickets in JSON format 5npx tambola ticket -c 5 -f json 6 7# Generate draw sequence 8npx tambola sequence 9 10# Save to file 11npx tambola ticket -o my_tickets.json
Operation | Speed | Memory Usage |
---|---|---|
Ticket Generation | 1,000+ tickets/sec | ~216 bytes/ticket |
Draw Sequence | 10,000+ sequences/sec | ~720 bytes/sequence |
CLI Operations | Instant response | Minimal overhead |
Batch Processing | 100,000+ items/min | Efficient memory usage |
1const tambola = require('tambola'); 2 3// Generate tickets for a 500-person event 4const eventTickets = []; 5for (let i = 0; i < 500; i++) { 6 eventTickets.push(tambola.generateTicket()); 7} 8 9// Generate backup draw sequences 10const drawSequences = []; 11for (let i = 0; i < 3; i++) { 12 drawSequences.push(tambola.getDrawSequence()); 13} 14 15console.log(`Generated ${eventTickets.length} tickets and ${drawSequences.length} draw sequences`);
1const express = require('express'); 2const tambola = require('tambola'); 3 4const app = express(); 5 6app.get('/api/ticket', (req, res) => { 7 const ticket = tambola.generateTicket(); 8 res.json({ ticket, timestamp: new Date().toISOString() }); 9}); 10 11app.get('/api/sequence', (req, res) => { 12 const sequence = tambola.getDrawSequence(); 13 res.json({ sequence, timestamp: new Date().toISOString() }); 14});
Feature | Description | Benefit |
---|---|---|
Official Compliance | Follows all Tambola rules | Legitimate game tickets |
High Performance | 1000+ tickets/second | Fast batch processing |
Zero Dependencies | No external packages | Lightweight & secure |
CLI Support | Command-line interface | Easy automation |
Multiple Formats | JSON, CSV, Table | Flexible output |
Comprehensive Tests | 84+ tests, 80%+ coverage | Reliable & stable |
Cross-Platform | Works everywhere | Universal compatibility |
Active Maintenance | Regular updates | Long-term support |
1npm install tambola
1const tambola = require('tambola'); 2const ticket = tambola.generateTicket(); 3console.log('Your Tambola ticket:', ticket);
1npx tambola ticket 2npx tambola sequence
Visit the 📚 Complete Documentation for detailed guides and examples.
We welcome contributions! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.
This project is licensed under the ISC License - see the license file for details.
Vishal Goyal - GitHub
1npm install tambola
Join thousands of developers and game organizers who trust Tambola for their ticket generation needs! 🚀
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/10 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More