Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 352 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 352 Bytes

glow.js

Interact with the GLOW-API

Example

const glow = require("glow-wrapper");

async function run() {
	let session = await glow.Session.login("TestUser", "TestPassword");

	let uc = glow.UserCollection(session);

	let me = uc.me();

	console.log(me.name);
}

run();
TestUser

Installation

$ npm i glow-wrapper