1.0.1 • Published 8 years ago
appveyor-logs v1.0.1
appveyor-logs 
Stream all available appveyor logs of the current repository's current commit to the terminal, until all jobs are finished!
WIP


Usage
$ cd ~/dev/level/leveldown
$ appveyor-logs
$ # or
$ appveyor-logs ~/dev/level/leveldownInstallation
$ npm install -g appveyor-logsJS API
const logs = require('appveyor-logs')
logs('.')
  .on('job', stream => {
    stream.pipe(process.stdout, { end: false })
  })
  .on('pass', () => {
    process.exit(0)
  })
  .on('fail', () => {
    process.exit(1)
  })For more events, check out bin.js.
Related projects
- travis-logs — Stream travis logs to your terminal!
- travis-watch — Stream live Travis test results of the current commit to your terminal!
- appveyor-watch — Stream live AppVeyor test results of the current commit to your terminal!
- ci-watch — Travis-Watch and AppVeyor-Watch combined!
- travis-log-stream — Read streaming travis logs, no matter if live or historic.
License
MIT