
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
Worker
In project root create worker.js:
const conf = require('nconf')
require('dm-sharedb-server/nconf')
const path = require('path')
// full path to workerActions.js and workerInit.js
process.env['WORKER_ACTIONS_PATH'] = path.join(process.cwd(), './build/workerActions.js')
process.env['WORKER_INIT_PATH'] = path.join(process.cwd(), './build/workerInit.js')
const TaskDispatcher = require('dm-worker')
const dispatcher = new TaskDispatcher()
dispatcher.start().catch((err) => {
console.log('Error starting worker', err)
})
In project root create workerInit.js. Do any initializations here (plug in hooks, ORM, etc.).
Since this file may be compiled by webpack, use global.DM_WORKER_INIT instead of module.exports:
import 'dm-sharedb-server/nconf'
import ShareDB from 'sharedb'
import richText from 'rich-text'
import Racer from 'racer'
import derbyAr from 'derby-ar'
import ormEntities from './model'
import shareDbHooks from 'sharedb-hooks'
import hooks from './server/hooks'
let init = global.DM_WORKER_INIT = function (backend) {
// Register rich-text type in ShareDB
ShareDB.types.register(richText.type)
// Init ORM
Racer.use(derbyAr)
Racer.use(ormEntities)
shareDbHooks(backend)
hooks(backend)
}
In project root create workerActions.js. Put your tasks here (name of functions are the name of tasks).
Since this file may be compiled by webpack, use global.DM_WORKER_ACTIONS instead of module.exports:
let ACTIONS = global.DM_WORKER_ACTIONS = {}
ACTIONS.test = function (model, task, done) {
console.log('>> Start test task', task.id)
setTimeout(() => {
console.log('>> Finish test task', task.id)
done()
}, 5000)
}
Add worker, workerInit, workerActions to webpack.config.js of dm-react-webpack:
module.exports = {
// ...
backendApps: {
server: path.join(__dirname, 'server'),
worker: path.join(__dirname, 'worker'),
workerActions: path.join(__dirname, 'workerActions'),
workerInit: path.join(__dirname, 'workerInit')
}
// ...
}
Copyright (c) 2022 Decision Mapper
FAQs
> Worker
The npm package dm-worker receives a total of 13 weekly downloads. As such, dm-worker popularity was classified as not popular.
We found that dm-worker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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.

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.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.