@evespace/esi-client
Version:
TypeScript client for EVE Online's ESI (EVE Swagger Interface) API
40 lines (25 loc) • 787 B
Markdown
A TypeScript client for the ESI (EVE Swagger Interface) API.
## Installation
```bash
npm install @evespace/esi-client
```
## Usage
```typescript
import { Configuration, DefaultApi } from 'esi-client';
const config = new Configuration({
basePath: 'https://esi.evetech.net/latest'
});
const api = new DefaultApi(config);
// Example: Get character information
const characterInfo = await api.getCharactersCharacterId(12345);
```
- Full TypeScript support with type definitions
- Complete coverage of EVE Online ESI API endpoints
- Built with fetch API
- ESM and CommonJS support
For detailed API documentation, please refer to the [EVE Swagger Interface](https://esi.evetech.net/ui/).
ISC © Mykola Skrypets