
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
the-computer
Advanced tools
Concurrent computations in node.js made easy.
We make software to instruct the computer to do 2 types of things: i/o and cpu computation.
Node.js is good at i/o things, but not good at cpu things due to the single thread computation mode for developers. But
this does not mean node.js app cannot leverage the multiple cores of modern cpu. It provides the child_process package,
but it is too low level for us. We just want a easy way to make our computation functions run in multi-processes, as how
the i/o functions do.
Now The Computer is here to help you out.
npm install --save the-computer
First, create a file to hold the computations.
// computations.js
module.exports = {
add (a, b) {
return a + b
}
}
Then, in your main app, create a computer to handle the computation.
// main.js
const Computer = require('the-computer')
const computationsFilepath = require('path').resolve(__dirname, './computations')
async function main() {
const computer = Computer.launch(computationsFilepath)
const result = await computer.compute('add', 1, 2)
computer.stop()
// result is 3
}
(computationFilepath, processesCount?) => computer
process.cpus.length() => void
Start the computer and spawn children processes. You should start the computer before calling compute.
() => void
Stop the computer and destroy all children processes.
async (name, ...args) => result
Do some computation.
(...args) => computer
Create a computer and start it.
Preset:
bcrypt packageResult:
MIT
FAQs
Concurrent computations in node.js made easy.
We found that the-computer 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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.