1.0.4 • Published 4 years ago
glow-wrapper v1.0.4
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();TestUserInstallation
$ npm i glow-wrapper