JavaScript
On this page
SCILL provides a JavaScript class that maps REST-APIs and provides convenience functions.
Source Code
You can find the source code to our JavaScript SDK in our public Github repository: https://github.com/scillgame/scill-js. If you encounter any bugs or issues, please let us know in the Issues tab of Github.
NodeJS
Install SCILL JavaScript Admin SDK in your NodeJS project via NPM:
npm install @scillgame/scill-admin-js
In JavaScript, use the SDK like this:
const SCILL = require("@scillgame/scill-admin-js");
const eventsApi = SCILL.getEventsApi(accessToken);
and in TypeScript:
import * as SCILL from '@scillgame/scill-admin-js';
const eventsApi = SCILL.getEventsApi(accessToken);