
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
A lightweight module used for fetching content and data from Wikipedia using the Wikipedia REST API
$ npm install wiki-page
var wiki = require('wiki-page');
wiki.get({params}, callback)
wiki.fetch({
section: 'page',
type: 'summary',
title: 'orlando fl',
}, (data) => {
console.log(data);
});
section: The section type in the Wikipedia REST API - 'page', 'data', 'feed', 'transform', etc.type: The content type - 'pdf', 'title', 'summary', 'html', 'media', 'metadata', 'references', 'mobile-html', 'related', 'random', 'pdf', 'data-parsoid', 'lint', 'onthisday', 'segments'title: The subject of the returned content - 'calico cat', 'german shepard' or 'ford falcon'event: For use in endpoints that require and event type - 'births', 'all', 'selected', 'deaths', 'events', 'holidays'revision: For use in endpoints that require a revision number - '3606853'date: For use in endpoints that require a date - '06/11' or '2012/05/12'format: For use in endpoints that require a format - 'title', 'html', 'summary', 'related', 'mobile-sections', 'mobile-sections-lead'wiki.fetch({endpoint}, callback)
wiki.fetch({query: '/page/summary/orlando'}, (data) => {
console.log(data);
});
Clone the repo and run the test.js file using $ node test
$ git clone git://github.com/waltir/wiki-page.git
$ cd wiki-page
$ npm install
$ node test
FAQs
A lightweight module used for fetching content and data from Wikipedia using the Wikipedia REST API
The npm package wiki-page receives a total of 0 weekly downloads. As such, wiki-page popularity was classified as not popular.
We found that wiki-page demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.