npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

matchdraw

v2.0.0

Published

Package for draw matches on various type of tournament system

Downloads

34

Readme

MatchDraw

JavaScript library for draw of matches on various type of competition.

See showroom/[...].js how to use high-level functions.

Install

npm install matchdraw

In html use <script src="path/to/matchdraw/dist/bundle.js"></script>

Supported type - actual

  • every2every : aka table or Round-robin https://en.wikipedia.org/wiki/Round-robin_tournament, every individal plays against each other
  • one4each : aka one round of Swiss https://en.wikipedia.org/wiki/Swiss-system_tournament, every individual has one oponent, based on weights between each double of individuals, into weights is possible encode various constraints like same club, distance in order etc...

Philosphy

I wish everyone could organize a nice tournament for their friends. Sit at the table/computer during whole event is not an activity corresponding to the 21st century. This is core package used in my other project BadTournament to do this monotone and boring process for you. Usage is free as a lot of active people have not enough money or time for licencing "nonsense". If you have enough money and this tool was useful for you - it would make me happy if you make some contribution (see below).

Code philosophy

Code is build mainly as Composition over Inheritence.

Contribution

You can contribute to project and/or make author happy via

  • find bugs and/or improvements
  • propose new tournament types
  • invite me ( [email protected] ) to your tournament - I like to play everything or just meet new people :-)
  • send some money via
    • paypal: https://paypal.me/JaroslavHolecek
    • bank (czk): 2200378568 / 2010 VS: 03170022

TODO

  • documentation...
  • remove edges of already drawen match in generate_weights() -> somehow code on only one place -> unite generate_weights_compensatory() with generate_weights()
  • good names for tournament/counting types
  • Test for Tournaments/Matches/Participants
  • KO type
  • Weights-generator for one4each for standard constraints (no repetitive match, the closer is score of players the higher chance to select them for match, include score of pravious contestant etc...)
  • Match sorter - to sort matches in plyable maner (no that one player plays consequnenting matches etc.)
  • Maximum weight matching for triples/4/5 etc... (is this even possible/exist some paper for this?)
  • OR statment in asserts -> assert pass if one of mutualy exclusive possibilities occure