- 稳定性
- 稳定
- 作用域
- 按租户隔离
- 边界
- packages/commerce/billing
订阅 · billing
已同步
MRR
$12,400
+12%
活跃订阅
847
+34
环比增长
+5.2%
对比上月
流失率
1.2%
-0.3%
收入 · 最近 7 天
- 周一42%
- 周二58%
- 周三51%
- 周四67%
- 周五73%
- 周六80%
- 周日92%
本月 $12,400
使用方式billing.ts
typescriptbilling.ts
1import { createCheckoutSession, getSubscription } from "@nebutra/billing";
2
3// Auto-routes to Stripe / Polar / LemonSqueezy / ChinaPay.
4const session = await createCheckoutSession({
5 customerId: org.id,
6 priceId: "price_pro_monthly",
7 successUrl: `${origin}/billing/success`,
8});
9
10const sub = await getSubscription(org.id);
11if (sub.plan === "pro" && sub.status === "active") {
12 // unlock pro features
13}