0.1.4 • Published 7 years ago

grunt-simple-rest v0.1.4

Weekly downloads
1
License
-
Repository
github
Last release
7 years ago

grunt-simple-rest

Built with Grunt

grunt simple rest http utils to verify api

Getting Started

This plugin requires Grunt ~0.4.5

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-simple-rest --save-dev

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

grunt.loadNpmTasks('grunt-simple-rest');
 grunt.registerTask('default', ['simple_rest']);
 grunt.registerTask('default', ['simple_rest:simple']);

The "simple_rest" task

Overview

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

grunt.initConfig({
  simple_rest: {
    simple: {
       async: true,
       protocol: 'http',
       hosts: ['11.22.33.11'],
       interrupt: false,
       count: 5,
       timeout: 3000,
       timeGap: 1000,
       url: ['/test', '/test2','http://11.111.11.11/test']
    }
  },
});

notice

if the server return json string include {"success":true},the http request return success , other is fail

simple intro

simple.async

Type: boolean

Default value: true

whether http requset parallel

simple.protocol

Type: String

Default value: http

http protocol

simple.hosts

Type: Array

http hosts list

simple.interrupt

Type: boolean

Default value: false

whether exit if have error

simple.count

Type: int

Default value: 5

how many count does each http request

simple.timeout

Type: int

Default value: 3000 ms

timeout of each http request start

simple.timeGap

Type: int

Default value: 1000

how much time of each two http request gap

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)

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago