Skip to content

Glow-Project/glow.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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