![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@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.
The npm package @comet/dev-process-manager receives a total of 851 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.