🚀 Socket Launch Week Day 4:Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection.Learn more
Sign In

jenkins-status-shaker

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jenkins-status-shaker

A npm module that give you the global status for a list of Jenkins jobs or/and views

latest
Source
npmnpm
Version
1.1.1
Version published
Weekly downloads
7
-22.22%
Maintainers
1
Weekly downloads
 
Created
Source

jenkins status shaker

Build Status

This awesome tool mix all status from a given list of Jenkins jobs and views and give you only one global state. More it will give you the global working status of your jobs which can be true or false depending if one or more jobs are currently building.


Install :

npm install jenkins-status-shaker

Example :

var JenkinsStatusShaker = require('jenkins-status-shaker');

var shaker = JenkinsStatusShaker.init('jenkins.mydomain.com', 'username', 'password'); // username and password are optional

shaker.setJobs(['job1', 'job2', 'job3']);

shaker.setViews(['view1', 'view2']);

shaker.onStatusReceived(function(status) {
    // status look like { status: 'SUCCESS', working: true }
});

shaker.getStatus();

FAQs

Package last updated on 11 Feb 2016

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