UNPKG

wackybot-request

Version:

wackybot-request is designed to be the simplest way possible to make http calls.

11 lines (9 loc) 320 B
# wackybot-request Introduction ## Super simple to use wackybot-request is designed to be the simplest way possible to make http calls. ### Sample Code for GET Method ```js const { get } = require("wackybot-request"); const response = await get("https://api.ipgeolocationapi.com/countries"); console.log(response); ```