84codes / sparoid.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SPAroid

JavaScript/NodeJS implemention of the SPAroid client.

Usage

import * as sparoid from '@84codes/sparoid'

// Sparoid will read the environment variables SPAROID_KEY and SPAROID_HMAC_KEY
await sparoid.auth(host, port, key, hmac_key)

// alternatively
await sparoid.auth(host, port)

Or in CommonJS environments:

import('@84codes/sparoid').then((sparoid) => {
  sparoid.auth(host, port).then(() => { console.log("authed") })
})

About


Languages

Language:JavaScript 100.0%