All Projects → fnbrjs → fnbr.js

fnbrjs / fnbr.js

Licence: MIT License
A library to interact with Epic Games' Fortnite HTTP and XMPP services

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to fnbr.js

home-assistant-bosch-custom-component
HA custom component for Bosch thermostats
Stars: ✭ 76 (+4.11%)
Mutual labels:  xmpp
astlinux
AstLinux is a "Network Appliance for Communications" x86_64 Linux distribution
Stars: ✭ 23 (-68.49%)
Mutual labels:  xmpp
hp
The homepage for our jabber.at and associated hostnames.
Stars: ✭ 16 (-78.08%)
Mutual labels:  xmpp
swear
🙏 Flexible promise handling with Javascript
Stars: ✭ 56 (-23.29%)
Mutual labels:  promises
lita-hipchat
A HipChat adapter for Lita.
Stars: ✭ 37 (-49.32%)
Mutual labels:  xmpp
xmpp-web
Lightweight web chat client for XMPP server
Stars: ✭ 52 (-28.77%)
Mutual labels:  xmpp
Fortnite-Forcer
A easy to use anti-cheat switcher for Fortnite written in C#.
Stars: ✭ 19 (-73.97%)
Mutual labels:  fortnite
cr-xmpp
XMPP/Jabber Library for Crystal
Stars: ✭ 16 (-78.08%)
Mutual labels:  xmpp
queueable
Convert streams to async ⌛ iterables ➰
Stars: ✭ 43 (-41.1%)
Mutual labels:  promises
FortniteApi
An C# client library for the TrackerNetwork Fortnite API.
Stars: ✭ 15 (-79.45%)
Mutual labels:  fortnite
node-google-calendar
Simple node module that supports Google Calendar API
Stars: ✭ 76 (+4.11%)
Mutual labels:  promises
mod push appserver
Simple and extendable appserver for XMPP pushes (aka. XEP-0357)
Stars: ✭ 24 (-67.12%)
Mutual labels:  xmpp
psimedia
Audio/video RTP abstraction library
Stars: ✭ 19 (-73.97%)
Mutual labels:  xmpp
epic-games-clone
🎮 Epic Games Launcher frontend clone made with React & Redux.
Stars: ✭ 18 (-75.34%)
Mutual labels:  epicgames
fortnite-basic-api
Basic Fortnite API for stats with async/await, and basic communicator
Stars: ✭ 46 (-36.99%)
Mutual labels:  fortnite
nodenative
C++14 port for the Node.js: native performance and modern simplicity
Stars: ✭ 15 (-79.45%)
Mutual labels:  promises
ejabberd mod apns
An ejabberd module to send PUSH messages to iOS devices through APNS
Stars: ✭ 31 (-57.53%)
Mutual labels:  xmpp
doasync
Promisify functions and objects immutably
Stars: ✭ 27 (-63.01%)
Mutual labels:  promises
EpicResearch
Research about Epic Games' non-documented API
Stars: ✭ 181 (+147.95%)
Mutual labels:  fortnite
mxpp
Bot for bridging Matrix and XMPP
Stars: ✭ 23 (-68.49%)
Mutual labels:  xmpp

CI Status NPM Version NPM Downloads MIT License Discord Server

An object-oriented, stable, fast and actively maintained library to interact with Epic Games' Fortnite HTTP and XMPP services. Inspired by discord.js, fortnitepy and epicgames-fortnite-client.



Installation

npm install fnbr

Usage example

const { Client } = require('fnbr');

const client = new Client({
  auth: {
    authorizationCode: '',
  },
});

client.on('friend:message', (msg) => {
  console.log(`Message from ${msg.author.displayName}: ${msg.content}`);
  if (msg.content.toLowerCase().startsWith('ping')) {
    msg.author.sendMessage('Pong!');
  }
});

client.login().then(() => {
  console.log(`Logged in as ${client.user.displayName}`);
});

Links

License

MIT License

Copyright (c) 2020-2022 Nils S.

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].