Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
This library provides a super easy way to declare and call remote functions from your services. You can run a single instance or scale to thousands. It's up to you!
Do you want to use callbacks, promises or async/await? All covered!
Instances do not need to be aware of each other's existence. The first instance that is available to pick up the function call, will process it, and send back the results. This way, remote procedure calls (rpc) will be handled in a distributed system: distributed procedure calls (dpc).
The library uses AMQP to setup communication between the instances. You need to have a compatible message broker available like RabbitMQ.
The fastest way to get started is by signing up for a service that hosts RabbitMQ for you, like CloudAMQP. No configuration needed, and with the free plan, you get plenty for free.
Alternatively, you can install RabbitMQ on you local machine. Refer to "Downloading and Installing RabbitMQ" for the different installation methods depending on your environment.
npm i dpc
This is a full example on how to use the library to connect to a broker, register a function, and execute this function.
If you only run a single instance of this snippet, the function will actually be executed on the same instance that was calling the function. When multiple versions of this snippet are running, any of the attached instances could execute the function.
const DPC = require('dpc')
// create a new dpc instance
const dpc = new DPC()
// connect to the broker
dpc.connect({ url: 'amqp://guest:guest@localhost:5672' }).then(() => {
// create the function that we want to execute remotely
function sumNumbers (params, cb) {
const numbers = params.numbers || []
const res = numbers.reduce((a, b) => a + b, 0)
return cb(null, res)
}
// register this function with dpc
dpc.register(sumNumbers)
// execute the function through dpc
dpc.functions.sumNumbers({ numbers: [1, 2, 3] }, function (err, res) {
if (err) { return console.error(err) }
console.log(`sumNumbers: ${res}`)
})
}).catch(err => {
// something went wrong
console.log(err)
})
See the API.md file for details.
If you would like to help out with some code, check the details.
Not a coder, but still want to support? Have a look at the options available to donate.
MIT
FAQs
Distributed Procedure Calls using AMQP
We found that dpc 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.