1.0.2 • Published 7 years ago

law-axios v1.0.2

Weekly downloads
26
License
MIT
Repository
-
Last release
7 years ago

Law Axios

Law adapter for exposing a REST service. Uses axios under the covers.

Usage

const PORT = 3000
const rest = require('law-axios')
const {expect} = require('chai')

const api = rest({
  json: true,
  domain: `http://0.0.0.0:${PORT}`,
})

api('GET /theanswer', {q: 'to life, the universe, and everything'})
  .then(theanswer => expect(theanswer).to.equal(42))
1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago