
Security News
6 AppSec CTOs Debate Open Source Supply Chain Security at Black Hat
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.
cloudelements_cmtool
Advanced tools
This is the Cloud Elements CM tool, which is used to connect with and integrate the various CM applications used by Cloud Elements, such as Git and Pivotal Tracker.
Install it globally:
$ npm install -g cloudelements_cmtool
Run it like this
$ cmtool <command> [parameters]
For example,
$ cmtool release-notes 1.10 1.11
You can use it in your code, too.
var cmtool = require('cloudelements_cmtool');
var git = new cmtool.Git;
var pivotal = new cmtool.Pivotal('my-pivotal-token');
var cart = new cmtool.Cart(pivotal, git);
process.chdir('path/to/git/repo');
cart.changeLog('1.10', '1.11', function(err, stories) {
console.log("err", err);
console.log("stories", stories);
});
git.longLog('patch-1.10.6', function(err, entry, done){
if (err != null) {
console.log("err", err);
} else if (done) {
console.log("done");
} else {
console.log("found commit with hash", entry.hash);
}
});
FAQs
An integrated client for CE CM apps.
The npm package cloudelements_cmtool receives a total of 0 weekly downloads. As such, cloudelements_cmtool popularity was classified as not popular.
We found that cloudelements_cmtool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.

Research
/Security News
Thirteen malicious Packagist themes expose visitors on unpatched iPhones to a WebKit-to-kernel exploit chain that steals device data and wallet seeds.

Research
/Security News
Ten malicious OpenAPI React Query Codegen versions were published to npm in the Mini Shai-Hulud attack, all with valid provenance.