Socket
Socket
Sign inDemoInstall

@cytrus-re/wikipediajs

Package Overview
Dependencies
4
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cytrus-re/wikipediajs

Promise-based Wikipedia API wrapper.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
866 kB
Created
Weekly downloads
 

Readme

Source

cytrus-re/wikipediajs

Travis build npm code style: prettier

Promise-based Wikipedia API wrapper.

Table of contents

Installation

Install via npm:

$ npm install @cytrus-re/wikipediajs

...or via a CDN:

<script src="https://unpkg.com/@cytrus-re/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 "@cytrus-re/wikipediajs";
    

    ...or require:

    const wiki = require("@cytrus-re/wikipediajs");
    
  • Search for an article:

    wiki
      .search("savanna hawk")
      .then((res) => console.log(res))
      .catch((error) => console.log(error));
    
  • Search for an article in a different language:

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

Keywords

FAQs

Last updated on 22 Jan 2021

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