Webpack SSH deployment plugin.
The Webpack plugin is based on ssh2 and scp2.
The webpack plugin helps developers quickly and automatically deploy project projects to the production server, support for ssh-privateKey login, and shell execution before and after the deployment of the command.
Install the plugin with npm:
npm install ssh-webpack-plugin --save-dev
Just add the plugin to your webpack config as follows:
var SshWebpackPlugin = require('ssh-webpack-plugin');
var webpackConfig = {
entry: 'index.js',
output: {
path: 'build',
filename: 'app.js'
},
plugins: [new SshWebpackPlugin({
host: 'Remote host',
port: 'Remote port',
username: 'Remote username',
password: 'Remote password',//or use privateKey login(privateKey: require('fs').readFileSync('/path/to/private/key')).
from: 'Deploy Local path',
to: 'Remote full path',//important: If the 'cover' of value is false,All files in this folder will be cleared before starting deployment.
})]
};
Type: String
The host of the remote server.
Type: String
Default value: '22'
Port to connect to on the remote server.
Type: String
The username to connect as on the remote server.
Type: String
Password for the username on the remote server.
Type: String
Full path on the remote server where files will be deployed.
Type: String
Default value: 'build'
Path on your local for the files you want to be deployed to the remote server. No trailing slash needed.
Type: Boolean
Default value: true
[Important]: If this value is false,all files in remote path folder will be cleared before starting deployment.
Local Deployment files will be cover to deployment directory on remote path.
Type: string
Path to your private key
privateKey: require('fs').readFileSync('/path/to/private/key')
Type: String
Passphrase of your private key if needed.
Type: String
or Array
Commands to run on the server before and before deploy directory is created.
Type: String
or Array
Commands to run on the server before and after deploy directory is created.
Type: Number
Default value: 20000
Default timeout (in milliseconds) to wait for the SSH handshake to complete.
Type: Boolean
Default value: true
Compress the build before uploading.
Type: Number
Default value: 200 * 1024
Largest amount of data allowed on stdout or stderr.
Type: Array
Default value: []
List of folders or files to exclude from build.
Add setting in webpack.config.js
:
plugins: [
new SshWebpackPlugin({
host: '10.211.55.5',
port: '22',
username: 'root',
privateKey: require('fs').readFileSync('/Users/unadlib/.ssh/id_rsa'),
before:'mkdir beforeTest',
after:'mkdir afterTest',
from: './build',
to: '/root/test',
})
]
- 2016/10/22 - v0.1.7 - Add the 'cover' options.
- 2016/10/22 - v0.1.4 - Initial Release.