Skip to content
Kysune edited this page Feb 6, 2019 · 5 revisions

Description

Unofficial EpicGames Launcher in javascript.

Game clients

Installation

npm i epicgames-client --save

Do you need help?

Check our discord server: https://discord.gg/HxGfuEx

Example

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"
				
			}
		
		}
	
	}
	
});
Clone this wiki locally