
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.