Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@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
2.7.0
0e94d06: Don't inject .env file as real environment variables for child processes
This can cause problems when the child process has a custom .env loading mechanism (e.g., additional files such as .env.secrets), but dev-pm sets environment variables which overrule the values loaded by the child process.
ee3ebf8: Watch dev-pm.config.js and update in running daemon
This allows modifications without having to shutdown the deamon.
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.
The npm package @comet/dev-process-manager receives a total of 360 weekly downloads. As such, @comet/dev-process-manager popularity was classified as not popular.
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.