Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hugomd/micro-up
⬆️ A microservice to check whether a website is 🆙
https://github.com/hugomd/micro-up
micro microservices ping uptime
Last synced: 2 months ago
JSON representation
⬆️ A microservice to check whether a website is 🆙
- Host: GitHub
- URL: https://github.com/hugomd/micro-up
- Owner: hugomd
- License: mit
- Created: 2017-03-12T03:54:31.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T23:12:55.000Z (about 2 years ago)
- Last Synced: 2024-04-14T19:27:50.604Z (10 months ago)
- Topics: micro, microservices, ping, uptime
- Language: JavaScript
- Homepage: https://up.now.sh/
- Size: 999 KB
- Stars: 35
- Watchers: 3
- Forks: 3
- Open Issues: 15
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Micro 🆙
[![Build status](https://img.shields.io/travis/hugomd/micro-up.svg)](https://travis-ci.org/hugomd/micro-up)A microservice that checks whether a website is up or not.
## Usage
By default, availability information is sent using plaintext, e.g.```
GET https://up.now.sh/google.com
HTTP/1.1 200 OKgoogle.com is up.
```### Using JSON
You can override the default (plaintext) by appending `?json` to the end of the URL, eg - `http://up.now.sh/google.com?json`.
```
GET https://up.now.sh/google.com?json
HTTP/1.1 200 OK{"url":"google.com","status":"Up"}
```# Contributing
If you'd like to contribute (you can skip a few of these steps if you'd like 😉):
1. Clone the repo
2. Make a new local branch
3. Change what you'd like
4. Write some tests
5. Make a Pull Request!✌️
# Deploy
[![Deploy to now](https://deploy.now.sh/static/button.svg)](https://deploy.now.sh/?repo=https://github.com/hugomd/micro-up)```
now hugomd/micro-up
```