Drowsy - The laziest REST client you'll ever see
This is the perfect tool for any prototype project or proof-of-concept application needing to integrate quickly with RESTful APIs, but it’s also ideally suited as a convenience tool in larger projects that too rely on RESTful interfaces.
Just hand Drowsy a hostname for the API to consume and you’re off to the races. Just look how easy it is to get started with the Gists API:
const github = drowsy(request, "https://api.github.com/");
github.getGists({
headers: {
"User-Agent": "Octo-app"
}
});