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
- Host: GitHub
- URL: https://github.com/fyko/egginc
- Owner: Fyko
- License: mit
- Created: 2024-10-07T23:09:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-07T23:16:33.000Z (almost 2 years ago)
- Last Synced: 2025-03-18T17:20:12.393Z (over 1 year ago)
- Language: TypeScript
- Size: 243 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```