@lumea-labs/hosting
v0.1.1
Published
Adapter-driven app hosting and domain management — domain search and purchase, DNS records, verification, SSL status.
Readme
@lumea/hosting
Tier 1 pure UI package for app hosting, domains, DNS records, SSL and verification flows.
The package is adapter-driven and has no registrar, DNS, deployment, or hosting
SDK dependency. Consumers provide a HostingAdapter and can wire any backend.
import { HostingHome, HostingProvider } from "@lumea/hosting";
export function HostingPage({ adapter }) {
return (
<HostingProvider adapter={adapter}>
<HostingHome />
</HostingProvider>
);
}Purchase flow primitives:
DomainPurchaseFlowDomainAvailabilityInputDomainSearchResultCardDomainPurchaseSummary
The composed HostingHome uses DomainPurchaseFlow by default and still lets
consumers replace it with searchSlot.
