0.1.0 • Published 7 years ago

wikipedia-edits-stream v0.1.0

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

wikipedia-edits-stream

A live stream of page edits on Wikipedia.

npm version build status ISC-licensed chat on gitter

Installing

npm install wikipedia-edits-stream

Usage

const edits = require('.')

const e = edits()
e.on('data', console.log)
e.on('error', (err) => {
	console.error(err)
	process.exit(1)
})

setTimeout(() => e.close(), 10 * 1000)

Contributing

If you have a question, found a bug or want to propose a feature, have a look at the issues page.