A simple NPM Package which returns random jokesnquotes. It provides awesome quotes to display in your application and if your mood is off, it provides jokes with categories. Get your daily quote and stay motivated along with a smile!
Click here to view this package on NPM registry. Check the homepage here.
$ npm install --save jokesnquotes
This is a Node.js module available through the npm registry.
Before installing, download and install Node.js.
Installation is done using the
npm install
command:
$ npm install jokesnquotes
const jokesnquotes = require('jokesnquotes');
console.log(jokesnquotes.getRandomQuote());
{
"text":"My reputation grows with every failure.",
"author":"George Shaw"
}
var jokesnquotes = require('jokesnquotes');
/*
The variable quote will contain a random quote with a format:
{
"text":"My reputation grows with every failure.",
"author":"George Shaw"
}
*/
var quote = jokesnquotes.getRandomQuote();
console.log(quote)
/*
The variable joke will contain a random joke with a format:
{
"body":"Artificial intelligence is no match for natural stupidity.",
"tags":["intelligence","stupid"]
}
*/
var joke = jokesnquotes.getRandomJoke();
console.log(joke)
/*
One can add exclusion filter for the jokes tags
default is ['sex', 'racist']
*/
var joke = jokesnquotes.getRandomJoke({
'exclude_tags': ['stupid', 'racist', 'love']
});
console.log(joke)
/*
The variable joke will contain a random joke with a tag and with a format:
{"body":"Artificial intelligence is no match for natural stupidity.","tags":["intelligence","stupid"]}
*/
var joke = jokesnquotes.getRandomJokeWithTag('stupid');
console.log(joke)
/*
One can add exclusion filter for the jokes tags
default is ['sex', 'racist']
*/
var joke = jokesnquotes.getRandomJokeWithTag('stupid', {
'exclude_tags': ['attitude', 'sport', 'love']
});
console.log(joke)
To view the examples, clone the jokesnquotes repo:
$ git clone https://github.com/ashwaniYDV/jokesnquotes.git
$ cd jokesnquotes
Then run the example/index.js:
$ node example
Let's get connected if we share the same views!
Invite me to connect on LinkedIn.
One day your life will flash before your eyes. Make sure it is worth watching!