
Unofficial API Wrapper for iFunny
Api Link
Example
var Ifunny = require("node-ifunny");
var ifunny = new Ifunny();
(async function() {
await ifunny.login(email,password);
// or
await ifunny.addToken(token);
// To use existing access token (recommended)
await ifunny.postimg(image_url);
await ifunny.postvid(vid_url);
})();