
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Node module for Buildkites API
npm install buildnode
You need to specify one of accessToken or email and password.
var Buildnode = require('buildnode')({
accessToken: "abc123"
})
var organizationName = "myOrg"
var pipelineName = "myPipeline"
// Fetch the organization
Buildnode.getOrganization(organizationName, function (err, myOrg) {
if (err) {
throw err
}
// Check if we got anything
if (!myOrg) {
throw new Error('Error fetching organization')
}
// Fetch the pipeline
myOrg.getPipeline(pipelineName, function (err, myPipeline) {
if (err) {
throw err
}
// Check we fetched the pipeline
if (!myPipeline) {
throw new Error('Invalid pipeline name')
}
myPipeline.listBuilds(function (err, builds) {
if (err) {
throw err
}
// First entry is latest build
builds[0].rebuild()
})
})
})
Lists all organizations that your credentials have access to.
Returns an organization class for name
List all pipelines available under this organization.
Returns an instance of pipeline
for name
Creates a new pipeline under this organization.
List all available agents.
Returns an instance of agent
for id
Stops the agent.
Delete this pipeline.
Update the pipeline.
Returns an array of instances of build
for this pipeline.
Returns an instance of build
for build number
.
Create a new build.
Cancel an in-progress build.
Rebuild a build.
Returns an array of instances of artifact
for this build.
Return an instance of artifact
for id
Unblocks this step.
Returns the command output for this step.
Returns an array of instances of artifact
for this job.
Returns a stream for the artifact
FAQs
Node module for Buildkite APIs
The npm package buildnode receives a total of 0 weekly downloads. As such, buildnode popularity was classified as not popular.
We found that buildnode 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.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.