s-brackets-viewer
v1.4.7
Published
A simple library to display tournament brackets (round-robin, single elimination, double elimination)
Downloads
4
Maintainers
Readme
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.
- Supports translation (i18next)
- Full vanilla JS (no framework)
- A full working example of creating and displaying brackets (see
./demo/with-ui.html
) - Themes supported, with CSS variables (see
./demo/themes
)
How to use?
Import the library from npm using jsDelivr (you can replace @latest
to lock a specific version):
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/brackets-viewer@latest/dist/brackets-viewer.min.css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/brackets-viewer@latest/dist/brackets-viewer.min.js"></script>
Or from GitHub with (you can replace @master
by any branch name, tag name or commit id):
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Drarig29/brackets-viewer.js@master/dist/brackets-viewer.min.css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/Drarig29/brackets-viewer.js@master/dist/brackets-viewer.min.js"></script>
Now, you can use it with data generated using brackets-manager or with crafted data following the brackets-model.
Demos
To quickly test, you can also try the demos by visiting ./demo/index.html
.
To use json-server
, you can:
Run the npm script named
db
to serve the static database file./demo/db.json
npm run db
Or use directly the
db.json
file generated by unit tests in thebrackets-manager
projectnpx json-server --watch path/to/brackets-manager/db.json
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)