Socket
Socket
Sign inDemoInstall

wikipediajs

Package Overview
Dependencies
5
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

wikipediajs

Wikipedia js api wrapper


Version published
Maintainers
1
Weekly downloads
220
increased by83.33%

Weekly downloads

Readme

Source

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))
    

Keywords

FAQs

Last updated on 11 Feb 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc