
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@codefresh-io/cf-queue
Advanced tools
var Queue = require('cf-queue');
var options = {
servers: [
'nats://localhost:4222'
]
};
var queue = new Queue('queue-name', options);
The same initalization code is used by the clien and worker sides.
When a client would like to push request into the queue it should use the queue request function and pass the request object.
var request = {
id: 1,
message: 'hello'
}
queue.request(request)
.then(function(response) {
console.log(response);
})
.catch(function(err) {
console.error(err);
});
queue.process(function(job, callback) {
var request = job.request;
var response = {
id: request.id,
message: request.message + ' world !!!'
};
callback(null, response);
}
As first parameter for the callback you can return error message or object that will be sent back to the client as error.
When a client would like to push request into the queue it should use the queue request function and pass the request object.
var request = {
id: 1,
message: 'hello'
}
queue.request(request)
.then(function(response) {
console.log(response);
})
.progress(function(message) {
console.log('PROGRESS >>> ' + message);
})
.catch(function(err) {
console.error(err);
});
queue.process(function(job, callback) {
var request = job.request;
var response = {
id: request.id,
message: request.message + ' world !!!'
};
var counter = 0;
var sendProgress = function() {
counter++;
job.progress('Step ' + counter + ' in ' + request.id);
if (counter === 5) {
callback(null, response);
} else {
setTimeout(sendProgress, 500);
}
};
sendProgress();
}
You can see example of how to use the queue in Docker in the attached Dockerfile and docker compose file. The docker compose file load one client, two workers and the queue server.
FAQs
Queue wrapper for nats.io
We found that @codefresh-io/cf-queue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 17 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.