TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How do you implement and manage subscription plans in your SaaS app?

3 点作者 ksj2114大约 5 年前
I&#x27;m looking for suggestions about how to create user facing plans and manage which features are available to them? To my knowledge Chargebee, Recurly, Stripe handle all the billing &#x2F; subscription management, but do I have to build all the logic around what features are available for which plans in my app, or is there a way to abstract this?<p>For reference, we currently use Stripe for billing, Firebase for authentication, Node.js on the backend, and React on the front end.

3 条评论

pamonrails大约 5 年前
It sounds like you are looking for an entitlement system[1]?<p>In my experience, none of the SaaS providers mentioned help you with this, probably because it&#x27;s very dependent on your product and business logic. Even with Kill Bill, which has an entitlement system[2], some amount of coding would be required to manage and enforce states like &quot;max amount of users reached for that plan&quot; (the logic would be abstracted from the billing though).<p>- [1] <a href="http:&#x2F;&#x2F;killbill.io&#x2F;blog&#x2F;subscriptions-entitlement-billing-and-dunning&#x2F;" rel="nofollow">http:&#x2F;&#x2F;killbill.io&#x2F;blog&#x2F;subscriptions-entitlement-billing-an...</a> - [2] <a href="http:&#x2F;&#x2F;killbill.io&#x2F;blog&#x2F;blockingstate-abstractions&#x2F;" rel="nofollow">http:&#x2F;&#x2F;killbill.io&#x2F;blog&#x2F;blockingstate-abstractions&#x2F;</a>
Old_Thrashbarg大约 5 年前
We use Chargebee (backed by Stripe). As far as I know, in terms making a page that helps explain the different features available, none of these services help with that. Chargebee does provide a hosted page, where you can have a short description of each plan that the user will be able to see.
评论 #22741482 未加载
tzm大约 5 年前
Look into Authpack. Haven&#x27;t used it, but it seems interesting.<p><a href="https:&#x2F;&#x2F;authpack.io" rel="nofollow">https:&#x2F;&#x2F;authpack.io</a>