https://github.com/williamboman/basic-http-healthcheck
Very rudimentary, lightweight, HTTP server healthcheck tool.
https://github.com/williamboman/basic-http-healthcheck
Last synced: 6 months ago
JSON representation
Very rudimentary, lightweight, HTTP server healthcheck tool.
- Host: GitHub
- URL: https://github.com/williamboman/basic-http-healthcheck
- Owner: williamboman
- Created: 2018-07-01T18:48:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-01T18:48:46.000Z (over 7 years ago)
- Last Synced: 2025-03-20T00:18:53.114Z (10 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basic-http-healthcheck
> *Very* rudimentary, lightweight, HTTP server healthcheck tool.
## Usage
```
# verifies that response status code is within 200-299 range
$ basic-http-healthcheck http://localhost:9000
# verifies that response status code is within 200-299 range, and response body includes "foo bar"
$ basic-http-healthcheck -f "foo bar" http://localhost:9000
```