-
Notifications
You must be signed in to change notification settings - Fork 33
Home
Kysune edited this page Feb 6, 2019
·
5 revisions
Unofficial EpicGames Launcher in javascript.
npm i epicgames-client --save
Check our discord server: https://discord.gg/HxGfuEx
const EGClient = require('epicgames-client').Client;
let eg = new EGClient({
email: 'EMAIL',
password: 'PASSWORD'
});
eg.init().then(async (success) => {
if(success){
if(await eg.login()){
let account = await eg.lookup('Kysune');
if(account){
console.log(account.account_name + '\'s id: ' + account.id);
//It will return "Kysune's id: 9a1d43b1d826420e9fa393a79b74b2ff"
}
}
}
});