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

customdomain-js

v0.4.0

Published

Customdomain SDK — embed one-click custom-domain setup in your app.

Readme

customdomain-js

npm license

The official custom-domain SDK for customdomain.ai — let your users connect their own domain (acme.com, not acme.yourapp.com) to your SaaS in one click. DNS record configuration, provider detection across ~50 registrars, domain verification, and SSL certificate issuance all happen behind the scenes; you just render a widget and listen for one event.

Install

Hosted script (recommended — always current, zero build step):

<script src="https://app.customdomain.ai/widget-assets/customdomain-sdk.js"></script>

Or via npm (for bundlers / TypeScript):

npm install customdomain-js
# React apps: npm install @customdomain/react

Quickstart

Mint a short-lived widget token on your server (never ship your API key to the browser), then open the widget:

window.customdomain.open({
  applicationId: "app_123",
  token: TOKEN_FROM_YOUR_SERVER, // POST /v1/tokens, server-side
  // optional: prefilledDomain, whiteLabel, locale, endUserRef, managed, ...
});

window.addEventListener("customdomain:success", (e) => {
  console.log("connected:", e.detail.domain, "already?", e.detail.alreadyConnected);
});

That's it — no DNS provider SDKs, no ACME client, no polling loop. The widget handles apex domains (via Domain Connect or manual A/ALIAS records), www redirects, and certificate renewal for the lifetime of the connection.

API (window.customdomain)

| Method | Purpose | |---|---| | open(config) | Open the connect widget | | checkDomain(domain) | Detect provider + authoritative parse verdict | | checkRecords(...) | Check current DNS records | | load(config) / close() | Mount inline / close | | loadSharedFlow(url) | Resume a shared "finish setup" link (applies stored branding) | | purchaseDomain(...) | Buy a domain through the flow |

Events: customdomain:success, customdomain:close, customdomain:step (carries pendingDomains/processedDomains for multi-domain), customdomain:shared.

A window.entri compatibility shim is included, so migrating off Entri is a one-line script-tag swap — no code changes.

Links

  • Docs & full API reference: https://app.customdomain.ai/docs
  • Repo (source, React bindings, issues): https://github.com/CUSTOM-DOMAIN-APP/customdomain-sdk
  • License: Apache-2.0

Developing: npm run build (tsc + esbuild bundle) · npm run typecheck. The build emits dist/customdomain-sdk.js, the bundle the app serves as a hosted asset.