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

https://github.com/cheeplusplus/fa.js

nodejs library for accessing FA
https://github.com/cheeplusplus/fa.js

Last synced: 4 months ago
JSON representation

nodejs library for accessing FA

Awesome Lists containing this project

README

          

# fa.js

A Javascript API for accessing FurAffinity

### Example

```
const FurAffinityClient = require("fa.js").FurAffinityClient;

// These are your FA cookies
const fa = new FurAffinityClient("b=XXX; a=XXX; s=1");

fa.getSubmissions().then((submissions) => {
console.log("Submissions", submissions);
});
```