A simple Node.js module to fetch anime quotes from a JSON file.
npm install anime-quotes-js
git clone https://github.com/subashbaniyaa/anime-quotes-js.git
import { getRandomQuote, getAllQuotes } from 'anime-quotes-js';
// Get a random quote
const quote = await getRandomQuote();
console.log(quote);
// Get all quotes
const quotes = await getAllQuotes();
console.log(quotes);