Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

appveyor-logs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appveyor-logs

Stream all available appveyor logs of the current repository's current commit to the terminal, until all jobs are finished!

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

appveyor-logs Build Status

Stream all available appveyor logs of the current repository's current commit to the terminal, until all jobs are finished!

WIP

screenshot

screenshot

Usage

$ cd ~/dev/level/leveldown
$ appveyor-logs

$ # or

$ appveyor-logs ~/dev/level/leveldown

Installation

$ npm install -g appveyor-logs

JS 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.

  • 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

FAQs

Package last updated on 12 Jun 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc