
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
An experimental library for orchestrating job running and data processing across processes/machines within Gatsby.
npm i dagsby
Start a worker pool:
node node_modules/dagsby/dist/worker-pool-server.js --numWorkers 4 --socketPort 9999 --httpPort 10020
Create a simple task in a test.js file and run it on the worker pool.
const dagsby = require(`dagsby`)
;(async () => {
// Create our runner.
const runner = await dagsby.createRunner({
pools: [{ socketPort: 9999, httpPort: 10020 }],
})
// Create a simple task
const task = await dagsby.createTask({
func: args => `Hello ${args.name}!`,
// Written using Arvo's schema language.
argsSchema: [
{
name: `name`,
type: `string`,
},
],
})
// Setup the task on the worker pool(s).
await runner.setupTask(task)
// Run the task!
const result = await runner.executeTask({ task, args: { name: `World` } })
console.log(result)
})()
Let's try a more complex task where we specify a required file & add an NPM dependency.
First create a file called hello.txt with some text in it.
Then add this code to our test file after the first task.
const mySecondTask = await dagsby.createTask({
func: (args, { files }) => {
const fs = require(`fs`)
const _ = require(`lodash`)
const text = fs.readFileSync(files.text.localPath)
const camelCase = _.camelCase(text)
return `${args.preface} ${text} \n\n ${camelCase}`
},
argsSchema: [{ name: `preface`, type: `string` }],
dependencies: {
lodash: `latest`,
},
files: {
text: {
originPath: require(`path`).join(__dirname, `hello.txt`),
},
},
})
await runner.setupTask(mySecondTask)
const result2 = await runner.executeTask({
task: mySecondTask,
args: { preface: `yeeesss` },
})
console.log(result2)
FAQs
Gatsby library for orchestrating running data pipelines across workers
The npm package dagsby receives a total of 1 weekly downloads. As such, dagsby popularity was classified as not popular.
We found that dagsby 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.