https://github.com/nylen/node-mediawiki
Functions and scripts for manipulating a MediaWiki instance.
https://github.com/nylen/node-mediawiki
Last synced: 11 days ago
JSON representation
Functions and scripts for manipulating a MediaWiki instance.
- Host: GitHub
- URL: https://github.com/nylen/node-mediawiki
- Owner: nylen
- Created: 2012-10-09T22:06:28.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2019-10-07T21:24:53.000Z (over 6 years ago)
- Last Synced: 2025-02-22T07:18:19.655Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 268 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## node-mediawiki
See the `bin` directory for examples.
### Documentation
generated with: `grep '^MediaWiki.prototype.[a-z]' lib/index.js | sed 's/$/ ... }/'`
```js
MediaWiki.prototype.listPages = function(opts, cbTitle, cbDone) { ... }
MediaWiki.prototype.listRandomPages = function(count, cbTitle, cbDone) { ... }
MediaWiki.prototype.getPageContent = function(title, cb) { ... }
MediaWiki.prototype.getParsedPage = function(title, cb) { ... }
MediaWiki.prototype.setPageContent = function(title, text, options, cb) { ... }
MediaWiki.prototype.getLastRevision = function(cb) { ... }
MediaWiki.prototype.getRevision = function(revid, cb) { ... }
```