
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
NPM module for connecting Computes.io kernels to the Computes supercomputer and ultimately interacting with cores.
This example computes 9000! simultaneously across 3 cores.
var computes = require("computes");
var bigInt = require("big-integer");
var operation = "(function(data) { var result=1;for (var i = data*3000+1; i <= data*3000+3000; ++i){result = bigInt(result).multiply(i).toString();}return result; })";
// var operation = "https://gist.githubusercontent.com/computes/df86808c4a9d0a0d489a/raw/11c92b86662a4df5b5db585a1442796333bd1934/test.js";
// Set options
var options = {
domain: "domain_key_from_computes.io",
priority: "normal", //'low', 'normal' & 'high'
ttl: 60000, // milliseconds
delay: 0 //milliseconds
};
// Connect kernel to computes
var job = computes.connect(options.domain);
job.on("ready", function (){
// Update memory object
job.memory({"counter":0});
// Submit operations
for(var data = 0; data < 3; data++) {
job.compute(operation, data, options);
}
});
var jobCount = 0
// Fired as cores return results
job.on("result", function (result){
console.log(result);
jobCount++;
if (jobCount == 3){
job.disconnect();
}
});
// Fired by webhooks or messages from cores etc.
job.on("message", function (message){
console.log(message);
});
// Fired when memory changes by kernel or cores
job.on("memory", function (ram){
console.log("npm", ram);
});
Notes:
API commands include:
FAQs
computes.io distributed supercomputer
We found that computes 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.