🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

faster-webpack-upload-plugin

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

faster-webpack-upload-plugin

Upload your files to ftp server easier and faster,add support to 'webpack --watch'

1.2.3
latest
Source
npm
Version published
Weekly downloads
378
43.73%
Maintainers
1
Weekly downloads
 
Created
Source

faster-webpack-upload-plugin

Upload your files to ftp server easier and faster,add support to 'webpack --watch'

LICENSE 996.icu

NPM

Installation

npm i -D faster-webpack-upload-plugin

Usage

add following code to your webpack config file.

const FasterUploadPlugin = require('faster-webpack-upload-plugin');

var webpackConfig = {
  entry: 'index.js',
  output: {
    path: 'assets',
    filename: 'index_bundle.js'
  },
  plugins: [
    new FasterUploadPlugin({

        // config options, you can find options detail down here

    })
  ]
}

Options Detail:

Option NameUsageTypeDefault Value
hostServer's IP addressString(none)
portNumber of ssh portString"22"
usernameUsername for authenticationString(none)
localPathFolder path which need uploadStringDeprecated,don't need it anymore
remotePathFolder path on serverString(none)
logShow log when is uploadingBoolean | {info: Boolean, progress: Boolean, warning: Boolean, error: Boolean}false
clearFolderClear remote path files for the first timeBooleanfalse
fileIgnoresFiles didn't upload(matching file path + file name)Array<RegExp>(none)

for other options you can see https://github.com/mscdex/ssh2#client-methods

Change Log

1.2.2

- fix: ssh2 securty problem

1.2.1

- change: change license from MIT to 996.ICU License

1.2.0

- change: remove the code of scanning local directory, so remove the option "localPath"
- fix: when webpack watching mode add new folder, the plugin can auto retry and make it right

License

This project is licensed under 996.ICU.

Keywords

webpack

FAQs

Package last updated on 24 Nov 2021

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