Skip to content

A Simple SERVERLESS Microservice that checks whether a a website is up or not.

Notifications You must be signed in to change notification settings

mayurmarvel/isUpNow

Repository files navigation

isUpNow ?

A Simple SERVERLESS Microservice that checks whether a a website is up or not.

Inspired By - Hugo.md's MicroUp 🆙

API Reference

Get Status

  GET /
Type Description
string a valid Url

Example : https://isUPNow.netlify.com/google.com

Example Response

{"url":"https://google.com","status":"down"}

Deployment

You can deploy this Project on Netlify !

  • fork this repo
  • Deploy it on netlify

⚠ Use root diretory as build directory

Usage Example

const url = "https://isUPNow.netlify.com/google.com"

fetch(url)
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));

Releases

No releases published

Packages

No packages published