JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q20300F
  • License MIT

Package Exports

  • wikifetch-modern

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (wikifetch-modern) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Modern Wikifetch

Author: @sasklacz

Based on: WikiFetch

Why

For one of my projects I needed a list of related links from a wiki article including text exerpt and an image. This is a small experiment based on @bcoe's npm module which I rewrote to ES6.

What

This small module will get you a json formatted data of a wikipedia article including links and images.

Sample data returned by this code :

    {
        "title": "Foobar Article",
        "links": {
            "Link_to_another_article: {
                "text": "Another article.", // the text that was linked.
                "title": "Another_article.", // title attribute <a/> tag.
                "occurrences": 1 // number of times this article was linked.
            }
        },
        "sections": {
            "Section Heading": {
                text: "text contents of section.",
                images: ["http://foobar.jpg"] // images occurring within this section.
            }
        }
    }

Usage

Install npm module:

npm install wikifetch-modern

Use wikifetch-modern in your code. Calling wikipetch returns a Promise :

import wikifetch from 'wikifetch';

wikifetch('javascript')
.then((article) => {
  console.log('JSON ARTICLE: ', article);
})