DEV Community

Cover image for You don't need to pay for SaaS boilerplates - Open SaaS
vincanger for Wasp

Posted on • Originally published at wasp-lang.dev

You don't need to pay for SaaS boilerplates - Open SaaS

Presenting Open SaaS šŸŽ‰

Weā€™re really excited to present Open SaaS, the totally free, open-source, production-grade SaaS boilerplate for React, NodeJS, and Prisma.

See it in action here:

Open SaaS has got all the features of those paid SaaS starters youā€™ve been seeing lately, except its entirely free and open-source.

We felt that paying $300-$2,000 for some boilerplate code that you need to manage yourself was crazy. On top of that, many of these boilerplates rely heavily on 3rd-party services. Add on hosting and other fees, and youā€™re looking at spending quite a bit of money just to get your idea out there into the world.

Thatā€™s why with Open SaaS we made a conscious decision to try and use open-source and free services whenever possible. For example, our hosted demo app and its admin dashboard on OpenSaaS.sh are powered by a self-hosted version of Plausible analytics. Want the same features in your SaaS? Well, Open SaaS has got it preconfigured for you!

Also, the Wasp framework, which Open SaaS uses, does the job of building out a number of features for you, like Auth and Cron Jobs, so that you donā€™t have to pay a 3rd-party service or code it entirely yourself (weā€™ll explain this in more detail later).

Before we start...

Yoyoyoyo šŸ‘‹

Open SaaS - Open-source & 100% free React & Node.js SaaS starter! | Product Hunt

Open SaaS is live on Product Hunt right now! Come support our free, open-source initiative šŸ™

Image description

Why we built itā€¦ and then gave it away for free

The initial feedback in our pre-release has been largely positive, but weā€™ve also gotten some questions like:

  • ā€œIs it going to stay free?ā€
  • ā€œWhatā€™s your motivation for open-sourcing this?ā€

So we thought weā€™d go ahead and answer these to start.

Image description

First, yes it is 100% free and open-source and will stay that way.

Second, we believe that the collective knowledge of a community of developers, indiehackers, and solopreneurs will produce a better boilerplate than an individual or small group. When you buy a SaaS starter from some developer, youā€™re already getting an opinionated stack, then on top of that youā€™re also getting an app built the way they think is best ā€” and that may not always be the best for you.

Third, Open SaaS is a project by Wasp, an open-source React + NodeJS + Prisma full-stack framework with superpowers. We, the Wasp team, believe that Wasp is very well suited for creating SaaS apps quickly and efficiently, and we want this template to prove it. Plus, as developers, weā€™ve learned so much from other open-source projects, and Wasp itself is an open-source project.

Basically, we love the open-source philosophy and we want to pay it forward. šŸ™

So itā€™s our hope that we can provide a seriously valuable asset to the developer community while spreading the word about our open-source, full-stack framework. And weā€™d love to see the community contribute to it so that it will grow and become the best SaaS boilerplate out there.

What Open SaaS is Made Of

We put a lot of hard work into Open SaaS, including the documentation, so that developers can get a SaaS app launched confidently and easily.

Weā€™ve also spent some time checking out other free, open-source SaaS starters, and wanted to make sure Open SaaS has all the right features of a production-ready starter, without the bloat. And we think weā€™ve accomplished that for the most part, although we will continue to add features and improve on it with time.

Here are the main features at the moment:

  • šŸ” Authentication (email verified, google, github)
  • šŸ“© Emailing (sendgrid, emailgun, SMTP)
  • šŸ“ˆ Admin Dashboard (plausible or google analytics)
  • šŸ¤‘ Stripe payments (just add your subscription product IDs)
  • āŒØļø End-to-end Typesafety (no configuration necessary)
  • šŸ¤– OpenAI integrated (AI-powered example apps)
  • šŸ“– Blog w/ Astro
  • šŸš€ Deploy anywhere
  • šŸ“„ Full Documentation & Community Support

Itā€™s worth going into some detail about each of these features, so letā€™s do it.

Auth

Image description

Thanks to Wasp, Open SaaS ships with a number of possible Auth methods:

  • username and password (simplest/easiest for dev testing)
  • email verified w/ password reset
  • Google and/or Github social login

Hereā€™s where Wasp really shines, because all it takes to set up your full-stack Auth and get pre-configured UI components is this:

//main.wasp
app SaaSTemplate {
  auth: {
    userEntity: User,
    methods: {
      usernameAndPassword: {},
      google: {},
      gitHub: {},
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Seriously. Thatā€™s it!

Just make sure youā€™ve set up your social auth and have your API keys, as well as your User and ExternalAuth entities defined, and youā€™re good to go. And donā€™t worry, that part is all documented and explained in detail in the Open SaaS Docs.

On top of that, Open SaaS comes preconfigured with some examples on how to customize and create some really powerful auth flows.

Admin Dashboard & Analytics

Image description

By leveraging Waspā€™s Jobs feature, Open SaaS pulls data from Plausibleā€™s or Googleā€™s Site Analytics (your choice!) and Stripeā€™s Data APIs every hour and saves them to our database. This data is then shown on our Admin Dashboard (go to OpenSaaS.sh to see it in action). The nice part is, to get access to this data for your own app, all you have to do is follow our guide on getting your analytics API keys, insert the provided script, and youā€™re good to go!

Again, Wasp makes this whole process really easy. With the function for querying the APIs and getting the data we need already defined for you, Open SaaS then uses a Wasp Job within the main.wasp config file:

job dailyStatsJob {
  executor: PgBoss,
  perform: {
    fn: import { calculateDailyStats } from "@server/workers/calculateDailyStats.js"
  },
  schedule: {
    cron: "0 * * * *" 
  },
  entities: [User, DailyStats, Logs, PageViewSource]
}
Enter fullscreen mode Exit fullscreen mode

And thatā€™s it! Wasp takes care of setting up and running the cron job for you.

Stripe Payments

Image description

If youā€™re a developer thatā€™s never built your own SaaS before, then integrating with a payments processor like Stripe is probably one of the few challenges youā€™ll face.

This was the case for me when I built my first SaaS, CoverLetterGPT.xyz. That was actually one of my main motivators for building it; to learn how to intergrate Stripe payments into an app, as well as the OpenAI API.

And even though Stripe is well known for having great documentation, the process can still be daunting. You have to:

  • create the correct product type
  • set up webhook endpoints
  • tell Stripe to send the correct webhook events to you
  • consume the events correctly
  • deal with recurring and failed payments
  • test it all correctly via the CLI before going live

Thatā€™s why having Stripe subscription payments set up for you is such a win.

But even more important than that, is having the whole process conveniently documented for you! Which is why Open SaaS offers you convenient Stripe guides in our documentation šŸ™‚

Image description

End-to-End Typesafety

Open SaaS was built with Typescript, and because itā€™s a full-stack app, type safety from the back-end to the front-end can be a real lifesaver. I mean, some opinionated stacks have gotten hugely popular on this basis.

Luckily, Wasp gives you end-to-end Typesafety out-of-the-box (nothing to configure!), so it was easy for Open SaaS to take advantage of it.

Hereā€™s an example:

  1. Make Wasp aware of your server action:

    // main.wasp
    
    action getResponse {
      fn: import { getResponse } from "@server/actions.js",
      entities: [Response]
    }
    
  2. Type and Implement your server action.

    // src/srever/actions.ts
    
    type RespArgs = {
      hours: string;
    };
    
    const getResponse: GetResponse<RespArgs, string> = async ({ hours }) => { }
    
  3. Import it and call it on the client.
    Image description
    Client-side types will be inferred correctly!
    Image description

AI-powered Example App (w/ OpenAI API)

Image description

AI is making new app ideas possible, which is partly why weā€™re seeing a resurgence in developer interest in creating SaaS apps. As I mentioned above, the first SaaS app I built, CoverLetterGPT, is one of those ā€œGPT Wrappersā€, and Iā€™m proud to say it makes a nice passive income of ~$350 MRR (monthly recurring revenue).

I personally believe weā€™re in a sweet spot in software development where there exists a lot of potential to develop new, profitable AI-powered apps, especially by "indiehackers" and "solopreneurs".

This is why Open SaaS features an AI scheduling assistant demo app. You input your tasks for along with their alotted time, and the AI Scheduler creates a detailed plan for your day.

Image description

Under the hood, this is using OpenAIā€™s API to assign each task a priority, and break them up into detailed sub-tasks, including coffee breaks! Itā€™s also leverages OpenAIā€™s function calling feature to return the response back in a user-defined JSON object, so that the client can consume it correctly every time. Also, we're planning on adding open-source LLMs in the future, so stay tuned!

The demo AI Scheduler is there to help developers learn how to use the OpenAI API effectively, and to spark some creative SaaS app ideas!

Deploy Anywhere. Easily.

A lot of the popular SaaS starters out there use hosting-dependent frameworks, which means you're stuck relying on one provider for deployments. While these can be easy options, it may not always be the best for your app.

Wasp gives you endless possibilities for deploying your full-stack app:

  • One-command deploy to Fly.io with wasp deploy
  • Use wasp build and deploy the Dockerfiles and client wherever you like!

The great thing about wasp deploy, is that it automatically generates and deploys your database, server, and client, as well as sets up your environment variables for you.

Open SaaS also has built in environment variable and constants validators to make sure that youā€™ve got everything correctly set up for deployment, as well as deployment guides in the docs

Image description

In the end, you own your code and are free to deploy it wherever, without vendor lock-in.

Help us, help you

Open SaaS - Open-source & 100% free React & Node.js SaaS starter! | Product Hunt

Wanna support our free, open-source initiative? Then go show us some support on Product Hunt right now! šŸ™

Image description

Now Go Build your SaaS!

We hope that Open SaaS empowers more developers to ship their ideas and side-projects. And we also hope to get some feedback and input from developers so we can make this the best SaaS boilerplate starter out there.

So, please, if you have any comments or catch any bugs, submit an issue here.

And if youā€™re finding Open SaaS and/or Wasp useful, the easiest way to support is by throwing us a star:

Top comments (26)

Collapse
 
fecony profile image
Richard Tagil

Oh yes now I can rebrand it and sell!

Collapse
 
srbhr profile image
Saurabh Rai

šŸ˜‚ šŸ˜‚ This is the way to the dark side.

Image description

Collapse
 
vincanger profile image
vincanger

haha

Collapse
 
vincanger profile image
vincanger

Hey... wait!

Collapse
 
ricardogesteves profile image
Ricardo Esteves

šŸ¤£šŸ¤£šŸ¤£

Collapse
 
srbhr profile image
Saurabh Rai

An excellent idea would be to start a SAAS selling SAAS boilerplates. šŸ˜‚
All with the help of AI.

Collapse
 
vincanger profile image
vincanger

haha that's the point we're at now :)

Collapse
 
martinsos profile image
Martin Å oÅ”ić

It will be awesome if community picks this up and we see even more features / add ons!

Collapse
 
vincanger profile image
vincanger

That's my dreeeeaaam šŸ¤—

Collapse
 
ricardogesteves profile image
Ricardo Esteves

Looks good, will check it out! šŸ‘€

Collapse
 
vincanger profile image
vincanger

Thanks

Collapse
 
zvone187 profile image
zvone187

Great job @vincanger - looks amazing

Collapse
 
vincanger profile image
vincanger

thanks!

Collapse
 
matijasos profile image
Matija Sosic • Edited

Amazing work on this one, Vince! I'm super excited about the community aspect of Open SaaS, as others already mentioned.

Collapse
 
vincanger profile image
vincanger

indeed! thanks šŸ™

Collapse
 
casen profile image
Casen

Curious how jobs are persisted in WASP, I can't find anywhere it's mentioned in the docs.

Collapse
 
vincanger profile image
vincanger

Itā€™s using PGboss in the background, a postgres job executor

Collapse
 
uliyahoo profile image
uliyahoo

Really love Open SaaS. Thanks for sharing it!

Collapse
 
leomjaques profile image
leo šŸ‘ØšŸ»ā€šŸ’»

Interesting, I wonder if implementing something like shadcn on top of this would make it unorganized

Collapse
 
vincanger profile image
vincanger

that would be cool! open a PR if you do add it :)

Collapse
 
ivancernja profile image
Ivan • Edited

This looks awesome! Is there really any excuse left to not get your SaaS idea up and running?

Collapse
 
vincanger profile image
vincanger

basically... no

thanks, Ivan!

Collapse
 
flowzai profile image
Flowzai

Really helpful content.

Collapse
 
yogini16 profile image
yogini16

:)
Nice one !!
Thanks for sharing

Collapse
 
debadyuti profile image
Deb

This looks great. But who is paying for boilerplate?

Collapse
 
andylarkin677 profile image
Andy Larkin

Am I the only one who thinks there are people who understand and can use the ā€œsource codeā€?
This is just something crazy for me!

Some comments may only be visible to logged-in visitors. Sign in to view all comments.