Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 919 Bytes

DOCS.md

File metadata and controls

41 lines (35 loc) · 919 Bytes

A Node.js ESM module for organizing tournaments, written in TypeScript.

Installation

npm i tournament-organizer

Importing

In Node.js:

import TournamentOrganizer from 'tournament-organizer';

In the browser:

import TournamentOrganizer from "https://unpkg.com/tournament-organizer/dist/index.module.js";

The following imports are also available:

import {
    Manager,
    Match,
    Player,
    Tournament
} from 'tournament-organizer/components';

import {
    LoadableTournamentValues,
    MatchValues,
    PlayerValues,
    SettableMatchValues,
    SettablePlayerValues,
    SettableTournamentValues,
    StandingsValues,
    TournamentValues
} from 'tournament-organizer/interfaces';

About

For more information, visit the repository.