RevenueCat is a powerful, reliable, and free to use in-app purchase server with cross-platform support. This repository includes all you need to manage your subscriptions on your website or web app using RevenueCat.
Sign up to get started for free.
Login @ app.revenuecat.com
npm install --save @revenuecat/purchases-js
yarn add --save @revenuecat/purchases-js
See the RevenueCat docs and the SDK Reference.
npm install
npm run build:dev
To avoid publishing the package you can use Yarn's link feature:
yarn link
yarn link "@revenuecat/purchases-js"
Note: Any changes you make to the library will be automatically reflected in your testing project after running
npm run build:dev
ornpm run build
.
npm run storybook
Note: This setup is only required if you need to test Storybook stories involving the
payment-entry
page.
To run these specific stories, you'll need to set up some environment variables. There are two options:
Internal team members can find the required environment variables in 1Password.
.env.development.local
file and set the following variables:VITE_STORYBOOK_PUBLISHABLE_API_KEY="pk_test_1234567890"
VITE_STORYBOOK_ACCOUNT_ID="acct_1234567890"
npm run test
npm run test:typecheck
npm run svelte-check
npm run prettier
npm run lint
Please check the Demo app readme here
npm run extract-api
This will update the files in api-report
with the latest public API.
If it has uncommitted changes, CI tests will fail. Run this command and commit the changes if
they are expected.
New versions are automated weekly, but you can also trigger a new release through CircleCI or locally following these steps:
bundle exec fastlane bump
and follow the instructions