josegrobles / wikiquotesJS

Wikiquotes module for Node.JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wikiquotesJS Build Status

A fun way to obtain quotes from your favourite people #Installing

npm install wikiquotesjs

#How to use ##Import

let wiki = require('wikiquotesjs')

##Getting a Random Quote

wiki.getRandomQuote().then(result => {
  console.log(result)
})

##Getting QOTD

wiki.QOTD().then(result => {
  console.log(result)
})

##Getting a Quote from your favourite person

let name = "Albert Einstein"
wiki.getQuotesName(name).then(result => {
  console.log(result)
})

Method usage:

#### wiki.getQuotesName(name,max_length)

  • name => Name of the person you want to get quotes from
  • max_length => Maximum length for a quote

About

Wikiquotes module for Node.JS


Languages

Language:JavaScript 100.0%