Socket
Socket
Sign inDemoInstall

faster-webpack-upload-plugin

Package Overview
Dependencies
43
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

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'


Version published
Weekly downloads
222
decreased by-7.88%
Maintainers
1
Install size
2.22 MB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 24 Nov 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc