a collection of tools for fly for fun universe
skillulator.lol
1# flyff.js
2
3flyff.js is an API wrapper written in TypeScript for the [FlyFF Universe API](https://api.flyff.com/)
4
5# Features
6
7- Type safe
8- ESM/CJS compatible
9- Covers all of the current FlyFF Universe API endpoints
10
11# Getting started
12
13## Install the library with your preferred package manager
14
15```bash
16npm install flyff.js
17```
18
19```bash
20yarn add flyff.js
21```
22
23## Instantiate a new client
24
25```js
26import { FlyffClient } from "flyff.js";
27
28const client = new FlyffClient();
29```
30
31## Make API calls
32
33```js
34await client.job.getAllIds();
35
36// [ 764 ,2246, 3545, 5330, ... ]
37```
38
39## Documentation
40
41coming soon
42
43## License
44
45[MIT](https://choosealicense.com/licenses/mit/)