
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
@comet/dev-process-manager
Advanced tools
dev-process-manager is a Node.js process manager for local development environments that need multiple processes. It can be easily integrated into existing Node.js projects.
dev-process-manager is a Node.js process manager for local development environments that need multiple processes. It can be easily integrated into existing Node.js projects.
$ npm install @comet/dev-process-manager
Recommended Alias:
alias dpm="npm exec -- dev-pm"
Add dev-pm.config.js
file to the project root.
This file defines all available scripts, which should be started by dev-process-manager.
module.exports = {
scripts: [
{
name: "api",
script: "npm run start",
group: ["foo", "bar"], //to access a group of scripts in all commands using @groupname
waitOn: [
"packages/foo/lib/index.d.ts", //wait until package is built
"tcp:5432" //wait until database is started (tcp:$POSTGRESQL_PORT is also supported)
]
},
...
],
};
Start one or all processes. The script-name argument can also be multiple names, "all" or a @group.
$ npx dev-pm start [options] [script-name or @group]
Options:
--follow
Follow logs after starting script (script will not be stopped when stopping this process)
Stop running processes
$ npx dev-pm stop [script-name or @group]
Restart a previously started processes
$ npx dev-pm restart [options] [script-name or @group]
Options:
--follow
Follow logs after starting script (script will not be stopped when stopping this process)
Lists running processes
$ npx dev-pm status [options] [script-name or @group]
Options:
--interval [seconds]
Keep status open and refresh periodically at specified interval
Prints logs of either a specific process or all running processes in real time.
$ npx dev-pm logs [script-name or @group]
Starts the dev-pm daemon, usually done automatically by other commands.
$ npx dev-pm start-daemon
Stop all running processes and shutdown dev-pm
$ npx dev-pm shutdown
Use in existing project with
npx ts-node ~/ws/dev-process-manager/src/index.ts
FAQs
dev-process-manager is a Node.js process manager for local development environments that need multiple processes. It can be easily integrated into existing Node.js projects.
We found that @comet/dev-process-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.