
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.
deploy-tool
Advanced tools
Node.js deploy tool.
npm install deploy-tool
deploy-tool --config deploy-config.js
// or
deploy --config deploy-config.js --mode=install
// --config :
// --mode : runing mode pass to config.
// default value "update".
// deploy-config.js
module.exports = {
// ssh2 connection config.
// https://www.npmjs.com/package/ssh2
connection: {
host: 'xxx',
port: 22,
username: 'xxx',
password: 'xxx',
// privateKey: require('fs').readFileSync('/here/is/my/key')
// passphrase : 'xxx'
},
serverRoot: '/home/node8/app-root',
localRoot: __dirname,
// upload files. gulp pattern
patterns: [
'lib/**/*',
'dist/**/*',
'package.json',
'pm2.eco.json'
// more files
],
// uploading before. commands
before: (shell, mode) => {
shell.local('npm version patch');
if(mode == 'install') {
shell.remote('mkdir -p /home/node8/app-root');
}
if(mode == 'update') {
shell.remote([
'rm -rf /home/node8/app-root/lib/*.*',
'rm -rf /home/node8/app-root/dist/*.*',
]);
}
/** it is working **/
// shell.remote([
// 'echo $(pwd)',
// 'cd ..',
// 'echo $(pwd)',
// ]);
// shell.remote('npm -v')
// shell.remote('node -v')
// shell.local('npm -v')
// shell.local('node -v')
// shell.local('echo foo bar')
},
// uploading after. commands
after: (shell, mode) => {
shell.remote('npm i --production');
shell.remote('npm run db:up');
shell.local('pm2 reload all')
// !!!!! local shell "cd" not run. not use "cd"
// tool.local('echo %cd%')
// tool.local('cd ..')
// tool.local('echo %cd%')
}
};
FAQs
nodejs deploy tool
We found that deploy-tool 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.