Random Quotes Generator
random-quote-gen-js is a lightweight and easy-to-use Node.js package that allows you to generate random quotes for your applications. It's perfect for adding a touch of inspiration or humor to your projects.
npm install random-quote-gen-js
To ensure your project supports ES modules, add the following line to your package.json file:
{
"type": "module",
...
}
After installation and setup, you can generate random quotes as follows:
import getRandomQuote from 'random-quote-gen-js';
const quote = getRandomQuote();
console.log(quote);
We welcome contributions to improve this package! Whether it's bug reports, feature suggestions, or pull requests, your help is greatly appreciated. Please check the Contributing Guidelines for more details.
This project is licensed under the MIT License. See the LICENSE file for more information.