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 🙏

© 2025 – Pkg Stats / Ryan Hefner

tournamenter

v2.4.3

Published

Tournament Event Manager made easy

Readme

Tournamenter NPM Version

Manage Tournament events - Scores, Tables, Groups and Public Views.

Don't like to use Terminal? Use the Native Desktop Application for managing Server instances on Windows, Linux and Mac OSx: TournamenterApp

View a Demo hosted @ heroku: Tournamenter DEMO

Tournamenter GIF

Installation

$ npm install -g tournamenter

Execution

$ tournamenter

Management

Tournamenter is made for Organizers and the Public.

All the components of tournamenter allows to generate beautifull and configurable Live UI to show on TV's, Projectors and even Online. Management is restricted for Organizers.

But, we provide you with 'views': Customizable Presentations that renders real-time data for the public. Just like "Power Point" presentations, but dynamic and alive.

Management: Teams

Manage Teams of your Event/People of your event. Create/Delete/Modify Team names and Country. Teams Manager

Management: Groups

Manage Groups Phases, Create matches and setup schedule. Teams Manager

Management: Tables

Manage Tables. Configure Scoring tables, customize ranking algorithm. Teams Manager

Management: Views

Manage Displays. Link multiple Groups, Tables, Messages and everything together for the public Teams Manager

Server Configuration: Basics

Configurations are assigned by Environmental Variables.

  • PORT: (default: 3000) Port the server will Bind to

  • APP_UID: (default: tournamenter) An identification (lowercase and no spaces) for the application. It's like a "namespace", and is used for database creation and connection.

  • APP_NAME: (default: tournamenter) Your application name. Usually, the name of the Event

  • APP_LOGO: (default: [internal_tournament_logo]) Absolute Path to the Logo. Prefer .png files to ugly white backgrounds.

  • PASSWORD: (default: [none]) Set's the password required to login. (There is no username)

Server Configuration: Database

Tournamenter uses Waterline ORM. It allows file db (default) and even MongoDB, MySql...

Disk DB: Saves to a .json file

  • DB_ADAPTER: (default: sails-disk) sails-disk is already the default one. No need to change
  • DB_PATH: (default: ./tmp/[APP_UID].db) Change this to reflect where the db file will be stored.

It DB_PATH can be either:

  • An Path to a Folder: Will use file DB_PATH/[APP_UID].db as db (ex: ~/)
  • An Path to a File: Will use file DB_PATH as db (ex: ~/mydb.db)

MongoDB: Connects to a MongoDB Server

  • DB_ADAPTER: (default: sails-disk) Set to sails-mongo in order to change to MongoDB
  • DB_URL: An formated MongoDB URI (Go Here for information)

Server Configuration: Extensions

Tournamenter allows dynamic loading setup of Extensions. It only requires a list of PATH's to load.

Dependencies are NodeJS Modules. They are given hooks to inject and modify Tournamenter Behavior.

To Run tournamenter with an Exension, provide:

  • TOURNAMENTER_EXTENSIONS: With a list of absolute paths, separated by : or ,. Ex: ~/myextensionA:~/myextB

Examples

Example 1 Running in PORT 4000, Setting LOGO and Changing name to My Event

PORT=4000 APP_LOGO=~/event.png APP_NAME="My Event" tournamenter

Example 2 Running in PORT 4000, Use custom database path

PORT=4000 DB_PATH=~/myfolder/event.db tournamenter

Credits

Creator: Ivan Seidel