An open API service indexing awesome lists of open source software.

https://github.com/fyko/egginc

A client for interacting with the Egg, Inc. API
https://github.com/fyko/egginc

Last synced: over 1 year ago
JSON representation

A client for interacting with the Egg, Inc. API

Awesome Lists containing this project

README

          

# egginc

A client for interfacing with the EggInc API.

## Installation

```sh
npm install egginc
```

## Usage

```js
import { REST } from 'egginc';

const rest = new REST();

const response = await rest.firstContact('EID1000000000001');
console.log(response);
```