
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This library allows to query and perform actions on MediaWiki-based wikis. You can query page lists, edit pages, delete them, upload files, and any action that MediaWiki supports through its API.
This project is actively evolving. Although the API is expected to remain stable and focus mostly in finding edge-cases or supporting other API actions, breaking changes may occur until 1.0. Some types haven't been verified to match the actual API response; if you find any error, please submit an issue. The current version does not handle errors, but it is intended to do so in a future version.
npm install wikiscript
yarn add wikiscript
import { Wiki } from 'wikiscript';
function main() {
const wiki = new Wiki('https://mywiki.com/api.php');
const allpages = await wiki.allpages({
apfrom: 'A',
aplimit: 'max',
apto: 'B',
});
const titles = allpages.map(page => page.title);
console.log(titles);
}
Calling the previous function will print in the console a list of page titles.
GNU General Public License version 3.
FAQs
MediaWiki API client.
We found that wikiscript demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.