Demo & Homepage • Quick Start Guide • Issues
- Feature Rich: marketing site, blog engine, search, contact form, and more.
- Lightning Performance: fast pre-rendered pages which score 100/100 on Google PageSpeed.
- Delighful Developer Experience: tools you'll love working with, including SvelteKit, Tailwind, and DaisyUI.
- Extensible: all the tools you need to make additional marketing pages, UI components, user dashboards, admin portals, database backends, API endpoints, and more.
- Hosting: Our suggested hosting stack is free to host, cheap to scale, easy to manage, and includes automatic deployments.
- MIT Open Source
- Fully Functional Demo
- Quick Start: Full docs from
git cloneto deployment.
You can explore all the features using our fully functional demo saasstarter.work.
See criticalmoments.io and getkiln.ai for examples of what’s possible after this template has design, content, and functionality added.
Everything you need to build an organization website:
- Marketing Page with SEO optimization and Sitemap
- Blog engine with rich formatting, RSS and SEO optimization.
- Search: lightning fast site search, without a backend
- Contact form with server-side validation
- Style toolkit: theming and UI components with DaisyUI
- Responsive: designed for mobile and desktop.
- Extensible: all the tools you need to make additional marketing pages, UI components, and more.
Want to learn why we picked the technologies we did, and how to keep your fork lightning fast as you add content? Check out our blog post on the process. Yes, it's hosted on a SaaS Starter fork!
- Web Framework: SvelteKit
- CSS / Styling
- Framework: TailwindCSS
- Component library: DaisyUI
- Hosting
- Host + CDN: Cloudflare Pages
- Serverless compute: Cloudflare Workers
The selected tech stack creates lightning fast websites.
- Pre-rendering (static generation) for marketing pages, pricing and blog
- Instant navigation: the best of CSR + SSR in one. SSR your first page for fastest possible initial load times. For subsequent pages, the content is pre-loaded and rendered with CSR, for instant rendering.
- CDN optimized, for high edge-cache hit ratios
- Edge-functions for dynamic APIs/pages
- Svelte and Tailwind compile out unused HTML, CSS and JS at deploy time for smaller pages
- Linting to find accessibility and syntax issues
The result is a perfect Google PageSpeed Insights score in all categories!
To get started, create your own copy of the project for development. There are two options:
- "Use this template": use this Github button if you want to build your own project using CMSaasStarter as a starter template and you aren't planning on contributing work back to the public open source project. See Github Docs.
- "Fork": use this button if you want contribute some or all of your work back to the public open source project. It will keep the full commit history, and be easier to create PRs back to CMSaasStarter.
On your development machine:
git clone [Your Repo]
cd [your-repo-name]
npm install
npm run dev -- --open
Your site will be live at http://localhost:5173.
The repo includes CI scripts designed for GitHub Actions. These confirm you don’t break your build, you use proper code formatting, code linting and typechecking passes, and even spell checking.
Github disables CI on new forks by default, so be sure to go into the Github Actions page for your repo and enable workflows.
To manually run all these tools run the following script. You can view it's contents for individual commands.
# first time only: chmod +x ./checks.sh
./checks.sh
Installing extensions in your editor can automatically format-on-save, show linting/type issues inline, and run your test cases:
- Svelte for Svelte and accessibility issues: VSCode or other editors
- ESLint for type checking and linting: VSCode and other editors
- Vitest for testing if you add tests: VSCode or other editors
To catch build, formatting, linting and test issues before you commit changes, we suggest the following local git hook. It will run before you commit, stop you from breaking the build, and show any issues that are found. Add the lines below to an executable git hook script at the location .git/hooks/pre-commit.
#!/bin/sh
# Run standard checks before committing
cd "$(dirname "$0")"
sh ../../checks.sh
If you find build, formatting or linting rules too tedious, you can disable enforcement by deleting the CI files (.github/workflows/*) and removing the git hook (.git/hooks/pre-commit).
This site is optimized for hosting on GitHub Pages as a static site.
- In your repository settings, go to Settings → Pages
- Under "Build and deployment", select:
- Source: GitHub Actions
- The included workflow will automatically build and deploy to GitHub Pages when you push to main
To manually build and deploy:
npm run build
# The output will be in the 'build' directoryThe .nojekyll file tells GitHub Pages not to process the site as a Jekyll project, allowing SvelteKit's routing to work properly.
To use a custom domain with GitHub Pages:
- Add a
CNAMEfile in thebuilddirectory with your domain name - Update your domain's DNS settings to point to GitHub Pages (see GitHub docs)
SaaS Starter includes email capabilities for sending emails to users and admins.
These are optional and disabled by default. See email docs for details on how to enable and customize them.
After the steps above, you’ll have a working version like the demo page. However, it’s not branded, and doesn’t have your content. The following checklist helps you customize the template to make a SaaS homepage for your company.
- Describe your site with a name, description and base URL in in
src/config.ts:. These values are used for SEO. - Content
- Add actual content for marketing homepage
- Add actual content for your blog (or delete the blog)
- Update all fields in
src/routes/(marketing)/blog/posts.ts, and replace the post pages undersrc/routes/(marketing)/blog/poststo align to the urls fromposts.ts. - Alternatively remove the blog by removing the src/routes/(marketing)/blog directory, and remove any links to the blog in the header and footer. You can always bring it back later.
- Update all fields in
- Add any pages you want on top of our boiler plate (about, terms of service, etc). Be sure to add links to them in the header, mobile menu header, and footer as appropriate (
src/routes/(marketing)/+layout.svelte). - Note: if you add any dynamic content to the main marketing page, pricing page or blog, be sure to set
prerender = falsein the appropriate+page.tsfile. These are currently pre-rendered and served as static assets for performance reasons, but that will break if you add server side rendering requirements.
- Update SEO content
- Update title and meta description tags for every public page. We include generic ones using your site name (
src/config.ts), but the more specific these are the better. - This done automatically for blog posts from
posts.tsmetadata
- Update title and meta description tags for every public page. We include generic ones using your site name (
- Style
- Theme: Update the theme to match your brand, or use one of the built in themes from DaisyUI (see
app.css). DaisyUI can automatically use a dark mode theme on systems with dark mode enabled (disabled by default) -- to enable if removethemes: false;and specify a dark mode theme. Docs: https://daisyui.com/docs/themes/ - Update the marketing page layout
src/routes/(marketing)/+layout.svelte: customize design, delete unwanted pages from header and footer - Style: make it your own look and feel.
- Update the favicon in the
/static/directory
- Theme: Update the theme to match your brand, or use one of the built in themes from DaisyUI (see
- Site Search: any prerendered content will automatically be indexed by the site search. To exclude a page, add it to
excludePathsinsrc/lib/build_index.ts. - Functionality
- Add actual SaaS functionality!
- Replace the admin dashboard with real content (
/src/routes/(admin)/account/+page.svelte). - Add API endpoints and database tables as needed to deliver your SaaS product.
- Analytics: optionally add analytics to your project. guide
The open source community is extending and improving SaasStarter!
These extensions are reference implementations of commonly needed features. We don't integrate them into the main branch to keep our dependencies minimal and simplify maintenance. However, if you need them you can cherry pick into your fork/repo:
- Internationalization: branch, and instructions
- Fork using Shadcn/ui instead of DaisyUI: kizivat/saas-kit
Homescreen Icons are from Solar Broken Line Icons and Solar Linear Icons via CC Attribution License.