npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@a1local/adpages-gbp-link-checker

v0.1.0

Published

Dependency-free local CLI for checking Google Business Profile link hygiene without scraping Google or calling remote APIs.

Readme

AdPages GBP Link Checker

Dependency-free local CLI for checking Google Business Profile and local listing link hygiene before agencies publish, report, or hand off a small business website.

Publishing Position

Free tool for agencies, local marketers, web designers, and SEO teams who need a no-login way to review GBP website, appointment, call, directions, and review links. It is designed as a linkable resource for local SEO checklists, web-design launch resources, and replacement-tool outreach.

The checker is intentionally conservative. It reads a local JSON file, parses candidate links, and flags patterns that usually create launch or measurement problems:

  • Missing HTTPS or unsupported protocols.
  • Unsupported hosts for action links, including social, messaging, app-store, bio-link, and shortener domains.
  • Likely UTM tracking gaps on website and appointment URLs.
  • Mixed destination domains across website and appointment links.
  • Suspicious shorteners that hide the final destination.
  • Review-link caution for policy-safe review requests.
  • Phone mismatches when business metadata includes a primary number.

It does not scrape Google, call Google APIs, resolve redirects, contact destination sites, or verify live HTTP status. That keeps it safe for browserless QA, agency handoff, and offline audits.

Install Locally

npm install
npm run check
npm run smoke

There are no runtime dependencies.

Usage

node bin/adpages-gbp-link-checker.mjs examples/sample-links.json --pretty
node bin/adpages-gbp-link-checker.mjs examples/sample-links.json --format text
node bin/adpages-gbp-link-checker.mjs links.json --website-domain example.com.au --phone "+61 8 5550 1000"

Input can be an object with business metadata and links:

{
  "business": {
    "name": "Perth Demo Dental",
    "websiteDomain": "perthdemodental.com.au",
    "phone": "+61 8 5550 1000",
    "allowedProviderDomains": ["cliniko.com"]
  },
  "links": [
    {
      "type": "website",
      "label": "GBP website button",
      "url": "https://www.perthdemodental.com.au/?utm_source=google&utm_medium=organic&utm_campaign=gbp"
    }
  ]
}

Or an array of link objects. Supported link types are website, appointment, call, directions, and review. Unknown types are inferred from labels and URLs.

Output

JSON is the default output. Use --format text for a concise terminal summary.

The report includes:

  • Normalized business metadata.
  • Per-link status, destination host, base domain, tracking details, and issue list.
  • Summary counts for errors, warnings, cautions, and ready/review/fix status.
  • Recommendations suitable for agency QA notes.

Conservative Rules

Website and appointment links are expected to use HTTPS and a complete UTM set (utm_source, utm_medium, utm_campaign) unless a click-id is present. Appointment links can use a third-party provider domain when the domain is included in allowedProviderDomains.

Call links are expected to use tel:. Directions links are expected to look like Google Maps directions URLs. Review links are expected to come from recognized Google review hosts, but the checker still adds a Review-link caution because requests must remain neutral and based on genuine customer experiences.

Google's public Business Profile docs describe local business links for actions like booking appointments and note that business links must be direct action pages rather than social, messaging, app-store, or shortener links. Google also documents that review links and QR codes can be shared, but review requests must not include incentives.

Publish Blockers

See PUBLISH_BLOCKERS.md. The package is intentionally private until ownership, support, package naming, and public examples are finalized.

Non-Goals

  • No live status checks.
  • No Google scraping.
  • No Google Business Profile API calls.
  • No redirect resolution.
  • No automated outreach.
  • No claim that a link is approved by Google.

Publisher

Built by AdPages from A1 Local as a free, dependency-light tool for local-service marketers, agencies, and small business site owners.