UNPKG

@ozrageharm/epiccore

Version:

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

7 lines (6 loc) 243 B
const epiccore = require('@ozrageharm/epiccore'); (async () => { const authCode = "your-auth-code-here" const auth = await epiccore.login({ method: "code", value: authCode }); console.log(`Logged in as: ${auth.displayName}`) })();