New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

deploy-tool

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deploy-tool

nodejs deploy tool

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

deploytool

Node.js deploy tool.

  • sftp upload to remoting server
  • upload before commands
  • upload after commands

install

npm install deploy-tool

usage


deploy-tool --config deploy-config.js
// or
deploy --config deploy-config.js --mode=install

// --config :
// --mode : runing mode pass to config. 
//          default value "update".


config

// 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%')
    }
};

Keywords

deploy

FAQs

Package last updated on 24 Dec 2023

Did you know?

Socket

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.

Install

Related posts