agreed-client

3.0.1 • Public • Published

agreed-client

Build Status

An agreed client for check response.

Install

$ npm install agreed-client -D

Usage

const agreedClient = require('agreed-client')
 
const {
  client,
  agrees,
  reporter,
} = agreedClient({
  path: './test/agreed.json5', // required
  scheme: 'http', // optional, default is http
  host: 'localhost', // optional, default is localhost
  port: 30103, // optional, default is 80
  defaultRequestHeaders: {
    'x-jwt-token': 'foobarbaz'
  }
})
 
client.requestPromise(agrees)
  .then(reporter)
  .catch((e) => {
    console.error(e)
    process.exit(1)
  })

/agreed-client/

    Package Sidebar

    Install

    npm i agreed-client

    Weekly Downloads

    130

    Version

    3.0.1

    License

    MIT

    Unpacked Size

    10.6 kB

    Total Files

    16

    Last publish

    Collaborators

    • yosuke-furukawa