grunt-httpput-upload

0.0.4 • Public • Published

grunt-httpput-upload

Upload files with http put request.

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-httpput-upload --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-httpput-upload');

The "httpput_upload" task

Overview

In your project's Gruntfile, add a section named httpput_upload to the data object passed into grunt.initConfig().

grunt.initConfig({
  httpput_upload: {
    example: {
      options: {},
      src: ['test/src/'], //上传文件目录
      dest: 'http://path/to/remote/' //远端地址
    }
  }
})

Options

options.separator

Type: String Default value: ', '

A string value that is used to do something with whatever.

options.punctuation

Type: String Default value: '.'

A string value that is used to do something else with whatever else.

Usage Examples

Default Options

把src目录下的文件复制到远端,远端地址为http://path/to/remote/test/src/

grunt.initConfig({
  httpput_upload: {
    example: {
      options: {},
      src: ['test/src/'], //上传文件目录
      dest: 'http://path/to/remote/' //远端地址
    }
  }
})

Custom Options

把src目录下的文件复制到远端,远端地址为http://path/to/remote/myprojectname/

grunt.initConfig({
  httpput_upload: {
    example: {
      options: {
        rule: {'src': 'myprojectname'}
      },
      src: ['test/src/'], //上传文件目录
      dest: 'http://path/to/remote/' //远端地址
    }
  }
})

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

License

Copyright (c) 2015 ztp130213. Licensed under the MIT license.

Readme

Keywords

Package Sidebar

Install

npm i grunt-httpput-upload

Weekly Downloads

8

Version

0.0.4

License

MIT

Last publish

Collaborators

  • ztp130213