
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Link individual or groups applications together via Redis to create modular full stack node systems.
var causeway = require('../../index')()
// register redis profiles
.register({
'default': {
port: 6379,
host: '0.0.0.0'
},
'special': {
port: 5678,
host:'0.0.0.0'
}
});
/**
* Host
*/
// listen on a redis connection
causeway.listen('default')
// switch on job events
.when('load_user', function (job, args, done) {
console.log('Process job: ' + job + ', with args: ' + JSON.stringify(args, null, 4));
// call callback on completion with response
done({ status: 'success' });
// if you have an error, pass it in `.err`
// so the client can have their promises rejected
done({ err: 'You did something totally wrong' });
});
/**
* Client
*/
// Connect to host via redis profile
var client = causeway.using('default');
// On handshake completion
client.on('handshake', function (key) {
console.log('Handshake with client with key: ' + key);
// request job from host
client.request('load_user', 'iyad').then(function (response) {
// callback on job completion
console.log('Response for load_user job: '+ JSON.stringify(response));
}, function (response) {
console.log('We had an error: ' + response.err);
});
});
###Tests
npm install && npm test
npm run bench
FAQs
causeway =====
We found that causeway 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.