Get all activity for an issue or pull request, in order.
var getUpdates = require('gh-issue-updates');
getUpdates({
repo: 'rvagg/through2',
issue: 33
}).on('data', console.log)
Output:
$ node example.js
{ type: 'issue',
data: '...' }
{ type: 'commit comment',
data: '...' }
{ type: 'comment',
data: '...' }
...
$ npm install gh-issue-updates
MIT