1.4.0 • Published 6 years ago

wikipediajs v1.4.0

Weekly downloads
4,354
License
MIT
Repository
github
Last release
6 years ago

wikipediajs

Travis build npm code style: prettier

Promise-based wikipedia API wrapper

Table of contents

Installation

Install via npm

$ npm install wikipediajs

Via a CDN

<script src="https://unpkg.com/wikipediajs/dist/index.umd.min.js" />

Features

  • Search wikipedia articles in any language
  • Get a random article
  • Get feed for Picture of the day, featured article or 'on this day' articles

Usage

  • import module

    import wiki from 'wikipediajs'

    or require

     const wiki = require('wikipediajs')
  • Search for article

    wiki.search('savanna hawk')
      .then((res) => console.log(res))
      .catch((error) => console.log(error))
  • search for an article in different language

    wiki.search('Veulta a san juan', 'es')
      .then((res) => console.log(res))
      .catch((error) => console.log(error))
1.4.0

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago