yarn add chucknorris-quotes
or
npm install chucknorris-quotes
const cq = require("chucknorris-quotes");
// get random joke
cq.getRandomJoke().then((response) => {
console.log(response.data);
});
cq.getRandomJoke().then((response) => {
console.log(response.data);
//=>{ "type": "success", "value": { "id": 467, "joke": "Chuck Norris can delete the Recycling Bin.", "categories": ["nerdy"] } }
});