# esiio

> Single dependency library for EVE Online's ESI

Latest version **0.1.1** (published 2019-10-22) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install esiio
pnpm add esiio
yarn add esiio
bun add esiio
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2019-10-22 |
| First published | 2019-09-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 41.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Erin Rivas |
| Maintainers | karnthis |
| Keywords | eve, eve online, ESI |

## Links

- npm: https://www.npmjs.com/package/esiio
- Repository: https://github.com/karnthis/esiio
- Homepage: https://github.com/karnthis/make-random#readme
- Issues: https://github.com/karnthis/make-random/issues
- npm.io page: https://npm.io/package/esiio

## Dependencies (1)

- [sqlite3](https://npm.io/package/sqlite3.md) ^4.1.0

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 0.1.1 (latest) — 2019-10-22
- 0.1.0 — 2019-10-12
- 0.0.6 — 2019-10-11
- 0.0.5 — 2019-09-08
- 0.0.4 — 2019-09-08
- 0.0.3 — 2019-09-08
- 0.0.2 — 2019-09-08
- 0.0.1 — 2019-09-07

## README

# ESIIO | ESI Interface Tool
## About ESIIO
ESIIO was created to simplify use of the EVE Swagger Interface API, and offers access to both Public and Authenticated routes. It is currently a work in progress, and not all routes are implemented. 

If you find an ESI route you want to use and is not available yet, please [open an Issue](https://github.com/karnthis/esiio/issues/new) requesting the route to be added.

## How to use ESIIO

### Install
```shell
npm install esiio
```
### Add to project
```javascript
const { Authenticate, Character } = require('esiio')

const Auth = new Authenticate(
  {
    clientID: 'MyClientID',
    clientSecret: 'MyClientSecret',
    cbPath: 'http://localhost:51515/callback',
    agent: 'ESIIO-My-App',
    scope: ['esi-universe.read_structures.v1','etc']
  }
)

const Char = new Character(auth.share())
// use Char in Express route or directly
```

## Supported Routes
- All public routes except:
  - Universe
- The following private routes:
  - Alliance
    - Contacts
  - Calandar
    - All
    - One
    - Attendees
  - Character
    - Assets
    - Blueprints
    - Bookmarks
    - Clones
    - Contacts
    - Contracts
    - CSPA
    - Faction Warfare
    - Fatigue
    - Implants
    - Loyalty Points
    - Medals
    - Members
    - Notifications
    - Opportunities
    - Planets
    - Research
    - Roles
    - Search
    - Standings
    - Stats
    - Titles
  - Corp
    - Assets
    - Blueprints
    - Bookmarks
    - Contacts
    - Containers
    - Contracts
    - Divisions
    - Facilities
    - Faction Warfare
    - Medals
    - Members
    - Roles
    - Shareholders
    - Standings
    - Starbases
    - Structures
    - Titles

---
_Source: https://npm.io/package/esiio · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
