
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
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
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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.