• Stars
    star
    110
  • Rank 316,770 (Top 7 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unofficial EpicGames Launcher in javascript.

Unofficial EpicGames Client for Node.js

npm version npm downloads license paypal

This library supports only epicgames launcher. If you need fortnite client, check node-epicgames-fortnite-client

Installation

npm i epicgames-client --save

Example

const { Launcher } = require('epicgames-client');

const launcher = new Launcher({
  email: 'E-MAIL',
  password: 'PASSWORD',
});

(async () => {

  if(!await launcher.init() || !await launcher.login()) {
    throw new Error('Error while initialize or login process.');
  }
  
  const playerName = 'Kysune';
  const account = await launcher.getProfile(playerName);
  if(!account) throw new Error(`Player ${playerName} not found!`);
	
  console.log(`${account.name}'s id: ${account.id}`);
  // "Kysune's id: 9a1d43b1d826420e9fa393a79b74b2ff"

})();

Documentation

https://epicgames-client.kysune.me/

Do you need help?

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

Interesting projects using epicgames-client

License

MIT License

Copyright (c) 2018 Kysune

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

node-epicgames-fortnite-client

Unofficial javascript client for Fortnite.
JavaScript
64
star
2

node-CSGODemoReader

A library for reading CS:GO demo files.
JavaScript
19
star
3

php-steamlogin

Script to obtain steamid, cookies and sessionid.
PHP
15
star
4

android-automator

Lightweight android automation tool through adb (android debug bridge)
JavaScript
9
star
5

node-epicgames-client-login-adapter

Helper for epicgames-client library, to easy login.
JavaScript
8
star
6

myCookies

Library created to make using cookies easier.
JavaScript
4
star
7

Sheepbar

Light weight and simple scrollbar in pure javascript.
JavaScript
3
star
8

nuxt-boilerplate

My nuxt boilerplate (SASS included)
JavaScript
2
star
9

auth-microservice

Advanced authorization microservice.
JavaScript
2
star
10

node-epicgames-dauntless-client

Unofficial Dauntless client in javascript.
JavaScript
2
star
11

socket.io-user-session

Sessions system for socket.io
JavaScript
2
star
12

nestjs-boilerplate

This is try to build a NestJS boilerplate with all frequent needed features. At the same time this is my first project in NestJS.
JavaScript
2
star
13

SheepToasts

Light weight and simple custom alerts (toasts) in pure JavaScript.
JavaScript
2
star
14

Bumbo

Bumbo is a simple blog engine based on files.
JavaScript
1
star
15

gamrisk

Telegram gambling bot
TypeScript
1
star
16

keyer

One client and API for all key-value databases.
JavaScript
1
star
17

node-messenger-lib

Simple and light library to support API of Facebook's Messenger platform.
JavaScript
1
star
18

blog.kysune.me---frontend

Frontend for my personal blog.
Vue
1
star
19

telegram-bot-mikolajki

Quick code for fun with friends
JavaScript
1
star