UNPKG

@ozrageharm/epiccore

Version:

EpicCore is a Node.js API Wrapper created to Interact with Epic Games' API.

13 lines (11 loc) 395 B
// if you use this, replace "../index.js" with "@ozrageharm/epiccore" const epiccore = require('../index.js'); (async () => { const authCode = "your-auth-code-here" try { const auth = await epiccore.login({ method: "code", value: authCode }); console.log(`Logged in as: ${auth.displayName}`) } catch(err) { console.log("An error occurred:", err) } })();