Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@betit/orion
Advanced tools
Orion is a pluggable framework for microservices.
Following "batteries included but removable" design philosophy. Providing sane default implementations, but everything is swappable. Comes with built in support for various transports and codecs.
Service:
const orion = require('@betit/orion');
const service = new orion.Service('calc');
service.handle('add', (req, reply) => {
reply(null, parseInt(req.params.a) + parseInt(req.params.b));
});
service.listen(() => {
console.log(`Service started: ${service}`);
});
Client:
const orion = require('@betit/orion');
const client = new orion.Client({ service: 'calc' });
client.call('add', { a: 3, b: 2 }, (err, res) => {
console.log(err, res);
client.close();
});
Check out the examples folder for more examples.
$ docker run -p 4222:4222 -p 8222:8222 -d nats
$ npm install
$ npm test
FAQs
Pluggable microservice framework
The npm package @betit/orion receives a total of 14 weekly downloads. As such, @betit/orion popularity was classified as not popular.
We found that @betit/orion demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 36 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.