Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
sync-threads
Advanced tools
Make asynchronous calls in Node.js synchronously using worker threads and Atomics mutexes.
Especially useful when you need to resolve promises at require-time, for example in an AWS Lambda function when using provisioned concurrency.
NOTE: you don't need this library if you're happy with the overhead of creating a Node.js subprocess, see the Appendix for details.
This example shows how we can synchronously retrieve secrets from AWS SSM at require-time – that is, before the init stage of Lambda has finished.
index.js
:
const { createSyncFn } = require('sync-threads')
// Create our synchronous function
const getSsmSecretSync = createSyncFn('./worker.js')
// Call it at init (require) time, no async needed!
const secret = getSsmSecretSync('/my-secret')
// Logged at init time
console.log({ secret, source: 'init' })
exports.handler = async () => {
// This value can be used in our handler without needing to resolve anything async
console.log({ secret, source: 'handler' })
}
worker.js
:
const SSM = require('aws-sdk/clients/ssm')
const { runAsWorker } = require('sync-threads')
const ssm = new SSM()
runAsWorker(async (ssmParamName) => {
const {
Parameter: { Value },
} = await ssm.getParameter({ Name: ssmParamName, WithDecryption: true }).promise()
return Value
})
You can see this example, as well as how you'd bundle it if you're using webpack or similar, in the examples
directory.
sync-threads
exports two main functions: createSyncFn
and runAsWorker
createSyncFn(filename[, bufferSize])
Returns a synchronous function that will run the specified file as a worker, pass in any arguments you give it, and wait for the result.
runAsWorker(workerAsyncFn)
To be called from inside your worker code. It will run the given asynchronous function with the given arguments from the parent and share the result.
With npm do:
npm install sync-threads
You can achieve something very similar to this library using the
spawnSync
/execSync
functions from the child_process
module in Node.js.
The main difference is that this library performs the async work in a thread, without creating a separate node
process,
which makes it a little faster.
Here's a simple example of how you'd do it without needing this library:
index.js
:
const { execSync } = require('child_process')
const { secret } = JSON.parse(execSync('node worker.js /my-secret', 'utf8').trim().split('\n').pop())
console.log({ secret, source: 'init' })
exports.handler = async () => {
console.log({ secret, source: 'handler' })
}
worker.js
:
const SSM = require('aws-sdk/clients/ssm')
const ssm = new SSM()
;(async () => {
const {
Parameter: { Value },
} = await ssm.getParameter({ Name: process.argv[2], WithDecryption: true }).promise()
console.log('%j', { secret: Value })
})()
FAQs
Perform asynchronous work synchronously using worker threads
The npm package sync-threads receives a total of 0 weekly downloads. As such, sync-threads popularity was classified as not popular.
We found that sync-threads 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.