0.3.0 • Published 9 years ago

apistatus v0.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

API Status Test Status Test Coverage License

API status is a simple tool to send API requests and retrieve standard response data.

Install

npm install apistatus

Usage

var apistatus = require('apistatus')

apistatus('http://mockbin.com/status/200', function(status){
  console.log(status)
  // { online: true, statusCode: 200, category: 'Success', message: 'OK' }
})

apistatus('http://mockbin.com/status/404', function(status){
  console.log(status)
  // { online: true, statusCode: 404, category: 'Client Error', message: 'Not Found' }
})

apistatus('http://notarealdomain35252.com/', function(status){
  console.log(status)
  // { online: false }
})

apistatus(require("har.json"), function(statuses){
  console.log(statuses)
  // [{ online: true, statusCode: 200, category: 'Success', message: 'OK' },...
})

Wishlist

  • optionally use the HAR response object to check against, essentially automated API testing

Contributing

Forks and pull requests are most welcomed. Please run npm test before sending a pull request.

MIT license

Copyright (c) 2015, Mashape (https://www.mashape.com/)

0.3.0

9 years ago

0.2.4

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago