
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.

srvoa is deprecated due to kermit.
Find the api docs on kermit-js.readme.io
configure([serviceConfig]), bootstrap(), launch().$ npm install srvoa
A simple demo srvoa application may look like this:
var Application = require('./src/Application.js'),
app;
app = new Application;
app.configure({
files: [
__dirname + '/config/application.js',
__dirname + '/config/application.production.js',
__dirname + '/config/application.local.js'
]
}).bootstrap().launch();
module.exports = app;
The application can read and merge multiple config files recursively (last wins). If a config file does not exist, it is skipped silently. That makes environment specific configuration sexy.
modules.exports = {
app: {
services: {
demo: require(__dirname + '/../src/DemoService')
}
},
'demo-service': {
slogan: 'Hey dude!'
}
};
The application will manage all services defined in app.services.
modules.exports = {
'demo-service': {
secret: '1234'
}
};
"use strict";
var BaseApp = require('srvoa').Application;
class Application extends BaseApp {}
modules.exports = Application;
"use strict";
var Service = require('srvoa').Service;
class DemoService extends Service {
static get CONFIG_KEY() {
return 'demo-service';
}
constructor(serviceManager) {
super(serviceManager);
this.slogan = null;
this.secret = null;
}
configure(config) {
this.slogan = config.slogan;
this.secret = config.secret;
return this;
}
launch() {
console.info('slogan: ' + this.slogan);
if (this.secret) {
console.info('secret: ' + this.secret);
} else {
console.info('No secret was configured.');
}
return this;
}
}
modules.exports = DemoService;
Running node application will output the following to the cli:
slogan: Hey dude!
secret: 1234
Please have a look at CHANGELOG.
The files in this archive are released under BSD-2-Clause license. You can find a copy of this license in LICENSE.
Icon: IT Infrastructure by Emily van den Heever from the Noun Project
FAQs
Infrastructure for service oriented architecture.
The npm package srvoa receives a total of 23 weekly downloads. As such, srvoa popularity was classified as not popular.
We found that srvoa 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.