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
- Host: GitHub
- URL: https://github.com/cheeplusplus/fa.js
- Owner: cheeplusplus
- License: mit
- Created: 2017-12-11T00:30:34.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-07-21T22:59:44.000Z (5 months ago)
- Last Synced: 2025-08-14T15:25:53.989Z (5 months ago)
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/fa.js
- Size: 464 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
});
```