Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

httpcheck

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

httpcheck

Simple HTTP status checker w/ timeout

  • 0.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-22.22%
Maintainers
1
Weekly downloads
 
Created
Source

httpcheck

Simple HTTP status checker w/ timeout.

Installation

npm install --save httpcheck

Usage

Very simple example to merely check that http://example.com returns a valid HTTP response of some kind:

var check = require('httpcheck')

check({ url: 'http://example.com' }, function(err) {
  if (err) {
    console.log('HTTP check for example.com failed!')
    throw err
  }
  console.log('HTTP check for example.com has passed')
})

Check that http://example.com/404 returns a HTTP response with status code 404 and give it at most 3 tries.

var check = require('httpcheck')

check({
  url: 'http://example.com/404',
  checkTries: 3,
  check(res) {
    if (res && res.statusCode === 404) {
      return true
    }
    return false
  }
}, function(err) {
  if (err) {
    console.log('HTTP check for example.com failed!')
    throw err
  }
  console.log('HTTP check for example.com has passed')
})

API

httpcheck takes a small number of parameters:

function(opts, cb)

opts is an object with properties:

  • url: URL to run HTTP check against. Required.
  • checkTries: Number of times to try the HTTP check. Default is 10.
  • checkInterval: Interval between HTTP check tries in ms. Default is 1000ms (1 second)
  • checkTimeout: Timeout for the HTTP check in ms. Default is 30000ms (30 seconds)
  • check: Custom check function which accepts a HTTP response object and returns true or false on success or failure. Default is that response object is truthy.
  • log: Custom log function. Default is console.log.

cb is a function callback which takes a single parameter indicating error.

Tests

httpcheck has tests. Execute npm test to run them.

License

httpcheck is released under the BSD license.

Keywords

FAQs

Package last updated on 23 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc