Sacsify is a comprehensive collection of ready-to-use frontend and backend components essential for most SaaS applications. With Sacsify, you can accelerate your development process and streamline the creation of your application, freeing up valuable time and resources.
Ready to use authentication component with hooks to access logged in user on your frontend and backend.
// Basic authentication with next page on successful authentication
<Authenticate next="/dashboard"/>
// Authentication modal to deeply integrate authentication inside your application
<AuthenticationModal open={true} callback={(response)=>{
console.log(response);
}}/>
// Fetch details of LoggedInUser on frontend
console.log(
LoggedInUser.user();
);
Present and manage your entire subscription module with a single react tag and wait for the revenues to start coming in.
// Present your subscription plans
<SubscriptionPlans/>
// Get details about logged in users' current plan
console.log(
LoggedInUser.getSubscription()
);
Empower your users to work with team mates with easy invite system and ready to use access control system
// Component to list team members & their roles
<TeamList/>
// Automatic access control wrapper
<Feature name="DUMMY_FEATURE_1" access="READ">
<YourFeature/>
</Feature>
// Manual access checking
console.log(
LoggedInUser.getAccessLevel(FEATURE_NAME)
);
// Fetch details of LoggedInUser on frontend
console.log(
LoggedInUser.user();
);