
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.
Automated deployment tool
npm install zeploy --D
or
yarn add zeploy -D
create an environment configuration:
./node_modules/.bin/zeploy config production
npm install -g zeploy
or
yarn global add zeploy
create an environment configuration:
zeploy config production
edit zeploy.config.js in root directory:
module.exports = {
"production": {
"ssh": {
"host": "123.45.67.89",
"username": "root",
"password": "123456"
},
/** Relative path */
"distPath": "dist",
/** Absolute path */
"targetPath": "/project/project-name",
/** Save the number of published versions(default 10) */
"keepReleases": "10",
/** Can only be executed if the environment name is exactly the same as the branch name */
"checkBranch": false
}
}
then deploy your project:
zeploy publish production
result:
// your distPath
dist
- index.html
- static
- css
- app.css
- img
- js
- 0.js
- 1.js
- 2.js
- app.js
- vendor.js
- manifest.js
// your targetPath
project
- project-name
- releases
- dist
- index.html
- static
- css
- app.css
- img
- js
- 0.js
- 1.js
- 2.js
- app.js
- vendor.js
- manifest.js
FAQs
We found that zeploy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.