All Projects → ExperiBass → esiJS

ExperiBass / esiJS

Licence: GPL-3.0 License
A simple Node module for EVE Onlines' ESI.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to esiJS

LazyBlacksmith
EVE Online Industry app written in python (flask) for backend, html / css / js for frontend
Stars: ✭ 44 (+158.82%)
Mutual labels:  eve-online, esi
goesi
Go client for EVE Online ESI and SSO using versioned endpoints
Stars: ✭ 59 (+247.06%)
Mutual labels:  eve-online, esi
eve online
EveOnline ESI API
Stars: ✭ 23 (+35.29%)
Mutual labels:  eve-online, esi
evedata
EVE Data Website
Stars: ✭ 25 (+47.06%)
Mutual labels:  eve-online, esi
jeveassets
jEveAssets is an out-of-game asset manager for Eve-Online, written in Java
Stars: ✭ 98 (+476.47%)
Mutual labels:  eve-online, esi
livecoding-frontend-projects
Repositório com projetos Front-End
Stars: ✭ 70 (+311.76%)
Mutual labels:  node-js
esi-test-server-docker
A dockerized version of Akamai's Edge Side Includes Test Server (ETS).
Stars: ✭ 30 (+76.47%)
Mutual labels:  esi
formatbot1
Make instant view easily and fast, from any article on the internet in the best messenger ever Telegram
Stars: ✭ 127 (+647.06%)
Mutual labels:  node-js
warframe-worldstate-parser
📗 An Open parser for Warframe's Worldstate in Javascript
Stars: ✭ 50 (+194.12%)
Mutual labels:  node-js
TODO-List-Tech-Module
TODO List (in C#, Java, JS and PHP) - Exam Preparation for the Tech Module @ SoftUni (August 2017)
Stars: ✭ 13 (-23.53%)
Mutual labels:  node-js
Registration-and-Login-Form-in-Nodejs-and-MongoDB
This Project is Live on: 🌍
Stars: ✭ 40 (+135.29%)
Mutual labels:  node-js
sourcemaps.io
Web-based Source Map validator
Stars: ✭ 50 (+194.12%)
Mutual labels:  node-js
Theatherflix
Theatherflix OpenSource Project - A visual tool for wiring digital movies, to sort and list the top latest movie trailers. We are constantly developing and making changes. Do you want to be part? Contact us!
Stars: ✭ 51 (+200%)
Mutual labels:  node-js
onetricks.net
(WIP) kayn-powered (typescript node.js) ReasonReact app presenting you a dashboard of high ELO one trick ponies in League of Legends
Stars: ✭ 13 (-23.53%)
Mutual labels:  node-js
delet
[DEPRECATED - see README.md] a Discord bot made using Discord.js
Stars: ✭ 46 (+170.59%)
Mutual labels:  node-js
advlib
Open source, protocol-agnostic library for decoding ambient wireless packets. We believe in an open Internet of Things.
Stars: ✭ 90 (+429.41%)
Mutual labels:  node-js
cuba-rest-js
Moved to https://github.com/cuba-platform/frontend/tree/master/packages/cuba-rest-js
Stars: ✭ 15 (-11.76%)
Mutual labels:  node-js
timeoff-server
TimeOff is an application that allows companies' employees to set vacations before they begin taking their time off. Implemented in modern tech stack i.e. Node, Express, MongoDB.
Stars: ✭ 33 (+94.12%)
Mutual labels:  node-js
botyo
Modular chatbot framework designed for group chat rooms on Facebook
Stars: ✭ 17 (+0%)
Mutual labels:  node-js
node-js-jwt-auth
Node.js Demo for Token Based Authentication (JWT) with MySQL database
Stars: ✭ 161 (+847.06%)
Mutual labels:  node-js

esiJS

esiJS is a updated module for the EVE Online ESI. It makes getting data from the ESI much easier, avoids cluttering your code with HTTP requests, and is small and powerful.

INSTALLING:

npm i --save esijs

USAGE:

const esiJS = require('esijs')
const esiClient = new esiJS({})
// Use all functions like this:
esiClient.group.<subgroup>.function()
    .then(r => {
        let headers = r.headers
        let data = r.data

        // do something with headers and data
    })
    .catch(e => { // .then/.catch is used when you don't await a function
        // whatever you want to do with errors
    })
// Or like this:
try {
    let data = await esiClient.group.<subgroup>.function()
} catch(e) { // try/catch is used when you await a function
    // Error? What error?
}

Please view the docs/ directory for the documentation on each group.

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