Zero dependencies Forem API client : use your own request client (axios
, fetch
...)
To use the Client, see the documentation of https://developers.forem.com/api
Some routes are not not yet in the client.
Code example :
import ForemClient from "forem-client"
import axios from "axios"; // import your own requester
const client = new ForemClient(axios); // your id is optional
const asyncMain = async () => {
let req = await client.GET_getUserByUsername("n4n5"); // return user infos of n4n5
}
asyncMain();
Licensed under the MIT License - LICENSE