Hunter-API
With this package you can easily interact with the HunterAPI
- HunterAPI Web Page: Click here
- HunterAPI Discord Server: Click here
Installation
npm install hunter-api
Some Examples:
Blur - Blur your image
const Hunter = require('hunter-api');
const hunter = new Hunter();
let Image = await hunter.blur('<Image Link>');
Lyrics - Get the lyrics of a song
const Hunter = require('hunter-api');
const hunter = new Hunter();
let Lyrics = await hunter.lyrics('<Song Name>');
Translate - Translate a text
const Hunter = require('hunter-api');
const hunter = new Hunter();
let text = await hunter.translate('<lang>', '<Text>');
Meme - Get a random meme
const Hunter = require('hunter-api');
const hunter = new Hunter();
let Meme = await hunter.meme();
Weather - Get weather from a place
const Hunter = require('hunter-api');
const hunter = new Hunter();
let Weather = hunter.weather('<City>')