New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-webdav-sync

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-webdav-sync

Put files and folders on a WebDAV server. Deploy with gulp

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
141
increased by7.63%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-webdav-sync

Put files and folders to a WebDAV server. Deploy with gulp.

Usage

Target is loaded from npmrc - global, user, or project file, or may be passed as a string parameter.

npm set dav http://user:pass@localhost:8000/
var dav = require( 'gulp-webdav-sync' )

gulp.task( 'default', function () {
  var options = {
      'log': 'info'
    , 'parent': 'dist'
  }
  return gulp.src( 'dist/**' )
    .pipe( dav( options ) )
} )

Options

Superset of http.request options parameter.

options.log

Logging threshold. Orthogonal to the console methods.

stringoutput
'error'
'warn'
'info'HTTP Responses
'log'Debug

Default: 'error'

options.parent

Relative or absolute path which halves the source path [vinyl.path] for appending the subsequent to the DAV target URI. Use with glob ** to prevent super-directories from being created on the target. e.g. gulp.src( 'dist/**' ).

Default: process.cwd()

Development

cd gulp-webdav-sync
npm install
npm test
npm set dav http://user:pass@localhost:8000/
gulp

Keywords

FAQs

Package last updated on 25 Jul 2015

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc