Skip to content

How to install esiJS

Farlido Tekitsu edited this page Aug 8, 2019 · 2 revisions

How to install esiJS :

  1. Install npm
  2. npm i --save esijs
  3. Put this in your code 👍
let esiJS = require('esiJS')
// Use all functions like this:
let a = await esiJS.group.<subgroup>.function()
            .catch(function(e) {
                // whatever you want to do with errors
            })
// functions MUST be 'await'ed, otherwise they wont work properly,
// except `getSettings`, `setSettings` and `addArrays`, those are synchronous functions (but can be used as async)

Isn't it easy ? :)

Clone this wiki locally