Skip to content

What is Base Ping

Overview

Base Ping is a very lightweight package that adds a simple health-check endpoint to your backend.

Ideal for uptime monitoring, CI/CD verification, or just ensuring your app is responding.

Base Ping can also be used as a minimal example of how to build and structure a package for Base, if building your own package.

How It Works

Base Ping registers a single endpoint:

js
/.well-known/ping

Making a request to this endpoint returns 200 OK and the json below, if everything is working ok:

json
{
    "ping": "pong"
}