Vibeleaderboard
Index / tool
Visit deno.com
Category
Developer Tools
Rank
No. 2252Tools index

Previous survey · No. 2180 ·

Pricing
Open Source
Type
TOOL
Builder
denoland
Latest release
v0.7.0
Date

About

Modern SaaS starter template built on Deno Fresh — auth, payments, and database wired up.

What it does

SaaSKit supplies a working submission and voting application that teams can reshape into a subscription product. It includes GitHub sign-in, user sessions, premium accounts, a statistics dashboard, paginated REST endpoints, Markdown publishing, an Atom feed, and optional Stripe checkout and webhooks. Deno KV stores users, submissions, votes, and subscription state.

Why it's ranked here

The breadth is useful for studying how a small Deno product fits together, and end-to-end tests cover major routes, authentication, API responses, and security headers. The verdict turns mixed for new production work because the project calls itself beta and explicitly says it is no longer actively maintained.

What's good

The database layer uses atomic checks when creating users, submissions, and votes, protecting related indexes from partial updates. Stripe stays optional, with pricing disabled when its configuration is absent. Operational tasks cover seeding, dumping, restoring, migrating, and resetting data. The application also ships error pages, responsive styling, an Atom feed, and explicit HTTP security headers.

Tradeoffs

GitHub OAuth is required even for local setup, so this is not a provider-neutral authentication base. Payments require separate Stripe account, command-line, webhook, and environment configuration. The database uses Deno's unstable KV capability. Dependencies span JSR, npm, and remote Deno imports, while dependency locking is disabled. Most importantly, users inherit an unmaintained beta codebase.

How to use it well

Use it as a reference implementation or prototype base when your team already wants Deno, Fresh, Deno KV, GitHub authentication, and Stripe. Start locally, run the supplied quality and test tasks, then replace branding and product-specific submission logic. It does not cover a maintained production foundation, alternate identity providers, or payments beyond the demonstrated premium subscription flow.

Technical notes+

deno.json defines development, build, preview, testing, type-checking, formatting, linting, Stripe initialization, and KV administration tasks; it also sets lock to false and enables unstable KV. main.ts starts Fresh and reports whether Stripe configuration is present, while fresh.config.ts composes GA4, KV OAuth, sessions, Tailwind, error handling, and security-header plugins. fresh.gen.ts registers page, REST, webhook, dashboard, blog, feed, and island modules. utils/db.ts models users, items, and votes with Deno KV secondary keys and atomic commits. e2e_test.ts creates the Fresh handler directly and exercises security headers, authentication redirects, dashboard access, feeds, submissions, and JSON endpoints.

Observed

License
MIT, stated in the supplied TypeScript source headers.
Primary language
TypeScript and TSX running on Deno.
Distribution
Source template cloned from Git, with workflows exposed through Deno tasks.
Interface
Web application with documented REST endpoints and an Atom feed.
Data layer
Deno KV with atomic operations and secondary-key indexes.
Platform support
Deployment instructions cover Deno Deploy and Docker-based VPS environments.
Testing
A root end-to-end test module exercises routes, authentication, APIs, and security headers.

Read from README.md, deno.json, main.ts, dev.ts, e2e_test.ts, fresh.gen.ts, fresh.config.ts, tailwind.config.ts, utils/db.ts, utils/http.ts, routes/feed.ts, utils/posts.ts, routes/_404.tsx, routes/_500.tsx, routes/_app.tsx.

What it can do

  • Authenticate users with login/registration

    User credentials (email, password)Authenticated user session

  • Process subscription payments

    Payment information and subscription plan selectionActive subscription status

  • Store and retrieve user data

    User information and application dataPersistent data records

  • Generate SaaS application boilerplate code

    Template configuration parametersReady-to-deploy SaaS application codebase

  • Handle payment webhooks

    Payment provider webhook notificationsUpdated subscription and billing status

  • Manage user sessions and authorization

    User authentication tokensAccess control decisions and protected resources

Tags

denofreshsaastemplatetypescript

Tech Stack

DockerTailwind CSS

Comments (0)

No comments yet

Editorially curated, with community endorsements as a secondary signal. Corrections welcome.