All Projects → SzymonLisowiec → node-epicgames-fortnite-client

SzymonLisowiec / node-epicgames-fortnite-client

Licence: MIT license
Unofficial javascript client for Fortnite.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to node-epicgames-fortnite-client

fortnite-basic-api
Basic Fortnite API for stats with async/await, and basic communicator
Stars: ✭ 46 (-16.36%)
Mutual labels:  fortnite, fortnite-stats
fortnitepy
Async python library for interacting with Fortnite's API and XMPP services.
Stars: ✭ 118 (+114.55%)
Mutual labels:  fortnite, fortnite-stats
game apis
This repository is for integrating with different apis to allow you to pull player or game data
Stars: ✭ 24 (-56.36%)
Mutual labels:  fortnite, fortnite-stats
hsluv-c
C99 implementation of HSLuv (revision 4)
Stars: ✭ 71 (+29.09%)
Mutual labels:  mit-license
HFSM
Hierarchical Finite State Machine Framework
Stars: ✭ 73 (+32.73%)
Mutual labels:  mit-license
blue-pair
Simple Bluetooth Android app for handling device discovery and pairing.
Stars: ✭ 52 (-5.45%)
Mutual labels:  mit-license
Leafgem
🌿💎 The humble beginnings of a 2D game engine in Crystal! [in-progress]
Stars: ✭ 72 (+30.91%)
Mutual labels:  mit-license
AuroraCMS
The Australian Open Source Content Management System
Stars: ✭ 13 (-76.36%)
Mutual labels:  mit-license
hacktoberfest2021
For Beginners, students and developers this is a great opportunity to learn and contribute to open source.
Stars: ✭ 79 (+43.64%)
Mutual labels:  mit-license
navigator-hugo
Navigator Business theme powered by Hugo. It also could be used for a personal portfolio.
Stars: ✭ 133 (+141.82%)
Mutual labels:  mit-license
OFOBike
A demo app like OFO Bike in Swift.
Stars: ✭ 18 (-67.27%)
Mutual labels:  mit-license
smtpd
SMTP server (library) for receiving emails, written in pure PHP.
Stars: ✭ 94 (+70.91%)
Mutual labels:  mit-license
godot-nightly
A program to download the latest version of Godot Nightly Builds
Stars: ✭ 23 (-58.18%)
Mutual labels:  mit-license
Minazuki
シンプルな製品アクティベーションシステム「Minazuki」のサーバーサイド実装
Stars: ✭ 16 (-70.91%)
Mutual labels:  mit-license
KeyboardDelimiter
jQuery Plugin for delimite pressed key on keyboard
Stars: ✭ 14 (-74.55%)
Mutual labels:  mit-license
lazylead
Eliminate the annoying work within ticketing systems (Jira, GitHub, Trello). Allows automating (without admin access) daily actions like tickets fields verification, email notifications by JQL/GQL, meeting requests to your (or teammates) calendar.
Stars: ✭ 42 (-23.64%)
Mutual labels:  mit-license
php-quill-renderer
Render quill insert deltas to HTML, Markdown and GitHub flavoured Markdown
Stars: ✭ 117 (+112.73%)
Mutual labels:  mit-license
docker-alpine-wkhtmltopdf
wkhtmltopdf alpine docker container with headless qt patches
Stars: ✭ 150 (+172.73%)
Mutual labels:  mit-license
gsc
embeddable (game) scripting language in C
Stars: ✭ 25 (-54.55%)
Mutual labels:  mit-license
magento-ngrok
Magento 2 module for ngrok.io service support
Stars: ✭ 45 (-18.18%)
Mutual labels:  mit-license

Unofficial Fortnite Client for Node.js

npm version npm downloads license paypal

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

Installation

npm i epicgames-fortnite-client --save

Example

const EGClient = require('epicgames-client').Client;
const Fortnite = require('epicgames-fortnite-client');
const { ESubGame } = Fortnite;

let eg = new EGClient({
  email: 'EMAIL',
  password: 'PASSWORD'
});

eg.init().then(async (success) => {
  
  if(!success)
    throw new Error('Cannot initialize EpicGames launcher.');
    
  if(!await eg.login())
    throw new Error('Cannot login on EpicGames account.');
    
  const fortnite = await eg.runGame(Fortnite);
  const br = await fortnite.runSubGame(ESubGame.BattleRoyale);

  let stats = await br.getStatsForPlayer('Kysune');

  console.dir(stats);

});

Documentation

Do you need help?

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

Warning about maintenance

Every Fortnite update, netCL version is updating. You should pass new version number while running this library

const fortnite = await eg.runGame(Fortnite, {
  build: '++Fortnite+Release-10.31-CL-8723043',
  engineBuild: '4.23.0-8723043+++Fortnite+Release-10.31',
  netCL: 8371706,
  partyBuildId: '1:1:8371706',
});

You'll find informations about version in Fortnite log files under path:

// Windows
C:\Users\USERNAME\AppData\Local\FortniteGame\Saved\Logs

You need to find these lines:

LogInit: Engine Version: 4.23.0-8723043+++Fortnite+Release-10.31
LogInit: Compatible Engine Version: 4.23.0-8707299+++Fortnite+Release-10.31
LogInit: Net CL: 8371706

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].