
Product
Introducing .NET Support in Socket
Socket now supports .NET, bringing supply chain security and SBOM accuracy to NuGet and MSBuild-powered C# projects.
@adobe/helix-shared-process-queue
Advanced tools
Shared modules of the Helix Project - Process Queue
Process tasks concurrently:
const processQueue = require('@adobe/helix-shared-process-queue');
const tasks = [1, 2, 3];
const result = await processQueue(tasks, async (task) => {
console.log(task);
return someValue;
});
Access results during task
const processQueue = require('@adobe/helix-shared-process-queue');
const tasks = [1, 2, 3];
const result = await processQueue(tasks, async (task, queue, results) => {
if (somecondition(results)) {
// returning undefined does not add the return value to results
return;
}
return someValue;
});
FAQs
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
Socket now supports .NET, bringing supply chain security and SBOM accuracy to NuGet and MSBuild-powered C# projects.
Research
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.