
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
Make sure your CircleCI parallel test runners all finish at the same time
Testqueue is a utility to help split work amongst parallel test runners on CircleCI. It does this by creating a simple SQS queue which the test runners consume.
# npm
npm install --save-dev testqueue
# yarn
yarn add -D testqueue
Testqueue is simple to use. A couple quick things to note:
import TestQueue from 'testqueue';
const queue = new TestQueue({
testDir: 'test',
async testRunner(file) {/* run the test file */},
onFinish() {/* Clean up or something */},
});
queue
.start()
.then(() => console.log('Yay!'));
FAQs
Make sure your CircleCI parallel test runners all finish at the same time
The npm package testqueue receives a total of 0 weekly downloads. As such, testqueue popularity was classified as not popular.
We found that testqueue 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.