brackets-viewer.js
A simple library to display tournament brackets (round-robin, single elimination, double elimination)
It contains all the logic needed to display tournaments.
How to use?
Import the library using jsDelivr:
Or using npm:
Now, you can use it with data generated using brackets-manager just like in the /demo
folder.
To quickly test, you can use json-server
:
-
Run the npm script named
db
to serve the static database file/demo/db.json
npm run db -
Use directly the
db.json
file generated by unit tests in thebrackets-manager
projectnpx json-server --watch path/to/brackets-manager/db.json
How to build?
Install all npm dependencies:
npm install
Build with webpack:
npm run build
Credits
This library has been created to be used by the Nantarena.
It has been inspired by:
- Toornament (design inspiration)
- Responsive Tournament Bracket (connection between matches in plain CSS)