
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@deployit/cli
Advanced tools
A powerful CLI tool to deploy multiple apps with one command, using PM2 and Git.
A powerful CLI tool to deploy multiple apps with one command, using Git, PM2, and Node.js.
.deployrc.json for easy setups.Use directly with npx (no install needed):
npx deployit --project MyProject --app app1,app2 --port 3000,3001 --env dev --sync true
Or install globally:
pnpm add -g @deployit/cli
Then:
deployit --project MyProject --app app1,app2 --port 3000,3001 --env prod
npx deployit --project MyProject --app web,public --port 1440,1441 --env dev --sync true --dry-run false --health-check
| Option | Description |
|---|---|
| --project | Name of the project |
| --app | Comma-separated list of apps |
| --port | Comma-separated list of ports |
| --env | Environment: dev or prod |
| --sync | Git sync before deployment: true or false |
| --dry-run | Simulate deployment without executing |
| --health-check | Perform a health check after app deployment |
If you run without enough arguments, the CLI will ask interactively:
npx deployit
You'll be prompted to enter project name, apps, ports, and environment.
.deployrc.json Config (Optional)Create a .deployrc.json in your project root:
{
"project": "MyProject",
"app": ["web", "public"],
"env": "dev",
"ports": {
"web": 1440,
"public": 1441
}
}
Then simply run:
npx deployit
✅ It will auto-read .deployrc.json!
| Situation | Exit Code |
|---|---|
| Success | 0 |
| App Build Failure | 1 |
| Invalid Arguments/Config | 2 |
| Git Sync Failure | 3 |
MIT © [Deployit]
FAQs
A powerful CLI tool to deploy multiple apps with one command, using PM2 and Git.
We found that @deployit/cli 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.