-
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 { Client } = require('epicgames-client');
let client = new Client({
email: 'EMAIL',
password: 'PASSWORD'
});
client.init().then(async (success) => {
if(success){
if(await client.login()){
let account = await client.lookup('Kysune');
if(account){
console.log(account.account_name + '\'s id: ' + account.id);
//It will return "Kysune's id: 9a1d43b1d826420e9fa393a79b74b2ff"
}
}
}
});