Highscores
Library to facilitate the process of creating score-based webxdc games.
It can handle multiple scoreboards at the same time.
Install
npm install @webxdc/highscores
Usage
Import @webxdc/highscores
lib (webxdc.js
also needs to be included) in your index.html
:
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<script src="webxdc.js"></script>
<script type="module">
import "@webxdc/highscores";
</script>
</head>
<body>
...
</body>
</html>
Usage without modules
Include webxdc-scores lib (together with webxdc.js
) in your index.html
:
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<script src="webxdc.js"></script>
<script src="./node_modules/@webxdc/highscores/dist/webxdc-scores.umd.js"></script>
</head>
<body>
...
</body>
</html>
Then you can access the API via window.highscores
object, check dist/webxdc-scores.d.ts file for documentation of the available API.
For a full example check the example/index.html file.