
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
carpenterd-api-client
Advanced tools
Node.js API client to interact with the carpenter build service.
The carpenterd-api-client is an API client for the carpenterd build service.
Install carpenterd-api-client from the npm registry:
npm install --save carpenterd-api-client
In all examples we assume that you've already initialized the client as followed:
'use strict';
var Carpenter = require('carpenterd-api-client');
var carpenter = new Carpenter('url-to-the-service');
As you can see in the example above, the Carpenter constructor requires one
argument:
Trigger a new build on carpenter service. The data provided should have
the same structure and signature as npm publish posted JSON.
carpenter.build({ data: {
"name": "tester", // name of the package
"dist-tags": {
"latest": "1.0.0"
},
"versions": {
"1.0.0": {
"name": "tester",
"version": "1.0.0"
...
}
},
"_attachment": "" // base64 encoded binary blob
}}, function () {
});
Cancel a build on carpenter service.
carpenter.cancel({
"pkg": "tester", // name of the package
"version": "1.0.0", // valid semver
"env": "prod" // optional environment parameter
}}, function () {
});
npm test
MIT
FAQs
Node.js API client to interact with the carpenter build service.
The npm package carpenterd-api-client receives a total of 2 weekly downloads. As such, carpenterd-api-client popularity was classified as not popular.
We found that carpenterd-api-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.