create-t3-app VS pocketbase

Compare create-t3-app vs pocketbase and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
create-t3-app pocketbase
183 176
23,295 33,003
3.3% 3.8%
9.2 9.7
about 19 hours ago 8 days ago
TypeScript Go
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

create-t3-app

Posts with mentions or reviews of create-t3-app. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-15.
  • Deploy Full-Stack Next.js T3App with Cognito and Prisma using AWS Lambda
    4 projects | dev.to | 15 Apr 2024
    import { unstable_noStore as noStore } from "next/cache"; import Link from "next/link"; import { CreatePost } from "~/app/_components/create-post"; import { getServerAuthSession } from "~/server/auth"; import { api } from "~/trpc/server"; export default async function Home() { noStore(); const hello = await api.post.hello.query({ text: "from tRPC" }); const session = await getServerAuthSession(); return (

    Create T3span> App h1>

    First Steps →h3>
    Just the basics - Everything you need to know to set up your database and authentication. div> Link>

    Documentation →h3>
    Learn more about Create T3 App, the libraries it uses, and how to deploy it.div> Link> div>

    {hello ? hello.greeting : "Loading tRPC query..."}p>

    {session && Logged in as {session.user?.email}span>} p> {session ? "Sign out" : "Sign in"} Link> div> div> div> main> ); } async function CrudShowcase() { const session = await getServerAuthSession(); if (!session?.user) return null; const latestPost = await api.post.getLatest.query(); return (

    {latestPost ? (

    Your most recent post: {latestPost.name}p> ) : (

    You have no posts yet.p> )} div> ); }

  • Interview with Senior JavaScript Developer 2024 [video]
    3 projects | news.ycombinator.com | 14 Apr 2024
    I thought he was making stuff up - "t3 stack vs t4 stack". But about 2 minutes in, I realized that I'd heard of a few things that he's talking about so I looked it up and they're real!

    I think it's possible everything he's saying is true, more or less. LOL

    t3: https://create.t3.gg

    t4: https://t4stack.com

  • Localized tRPC errors
    3 projects | dev.to | 16 Mar 2024
    We start with a project that was bootstrapped with create-t3-app. For internationalization we use next-intl and set it up as described in the getting started guide. With this initial project setup we can jump into implementing localized error messages.
  • Building an Admin Console With Minimum Code Using React-Admin, Prisma, and Zenstack
    5 projects | dev.to | 11 Mar 2024
    I used create-t3-app to scaffold the Next.js app, with TypeScript, Prisma, and "app router" enabled in the options. You can also use create-next-app for the job and install Prisma manually.
  • Leaving Everything Behind For Elixir [Theo – t3․gg] [video]
    1 project | news.ycombinator.com | 28 Feb 2024
    I agree that the quantity of publicly available code isn't the most reliable indicator of someone's seniority.

    My issue with this individual arises from the discrepancy between his public claims of significant expertise in the content he produces. He positions himself as a highly experienced developer, attracting a large following of junior developers who take his advice at face value.

    I am trying to collect data points supporting his claims of seniority. For instance, his website prominently features a statement that he is the creator of the T3 Stack. However, a review of the contributor statistics for the T3 Stack (https://github.com/t3-oss/create-t3-app/graphs/contributors)... minimal contributions from him, which raises questions about the validity of his claims.

  • Ask HN: Which full stack framework (NextJS, Remix, SvelteKit) would you use?
    2 projects | news.ycombinator.com | 13 Feb 2024
    I would recommend - https://create.t3.gg/

    It uses the following, which as of late are pretty well know and common, so you can punch in your problems to stackoverflow, google, or chatgpt and get some pretty good answers.

    It uses:

    Nextjs (React), typescript, trpc (typescript rpc), auth, tailwind, and Prisma (ORM)

    Though of course these could go out of fashion tomorrow, but I don't think the essential idea behind these libs and frameworks are that wacky, unique or unordinary.

    Prisma ORM, is a little opinionated, and you could swap it out for Drizzle, which is basically typescript side sugared SQL.

    TRPC might be also be a little sticky because it is tied to typescript, this is the tradeoff for the buttery smooth coupling for the fullstack experience. I think there exists a typed-rest solution out there, but haven't used it.

    Personal anecdata, I used this stack for a little hobby project and it was FUN.

  • You don't need to pay for SaaS boilerplates - Open SaaS
    3 projects | dev.to | 30 Jan 2024
    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.
  • Building a Local Development Environment: Running a Next.js Full-Stack App with PostgreSQL and Minio S3 Using Docker
    3 projects | dev.to | 6 Jan 2024
    Let's start by creating a Next.js application. We will use the T3 stack (TypeScript, TailwindCSS, and Prisma ORM) for this tutorial to skip installing and configuring all the dependencies which is out of the scope of this article. You can find more information about the T3 stack.
  • Ask HN: Who wants to be hired? (January 2024)
    21 projects | news.ycombinator.com | 2 Jan 2024
  • Show HN: Build your startup or side project faster with these SaaS templates
    8 projects | news.ycombinator.com | 1 Jan 2024
    https://github.com/t3-oss/create-t3-app

    You still would need to add Stripe but there are so many examples publicly available that it should be straight forward

pocketbase

Posts with mentions or reviews of pocketbase. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-14.
  • Redis Re-Implemented with SQLite
    15 projects | news.ycombinator.com | 14 Apr 2024
  • Using Google Sheets as the back end/APIs of your app
    11 projects | news.ycombinator.com | 12 Apr 2024
    I'd like to plug PocketBase [0] for a similar use case.

    Last week I was looking for a place to store random data with API access, and was looking at making a Google Sheets backend, but PocketBase was easy and didn't have a 60 rpm quota.

    Deploying to a cheap VPS was very easy with CapRover.

    [0] https://pocketbase.io/

  • Soul: A SQLite REST and Realtime Server
    8 projects | news.ycombinator.com | 19 Mar 2024
  • Deploying Pocketbase with Docker, Nginx and SSL
    2 projects | dev.to | 15 Feb 2024
    What is Pocketbase? Pocketbase is an open-source backend solution offering a real-time database, file storage, and seamless user authentication with OAuth integration, all readily available right out of the box.
  • Ask HN: What two software products should have a kid?
    2 projects | news.ycombinator.com | 5 Feb 2024
    Browsing HN, GitHub and the like we get to see a huge variety of software products and code bases.

    I often see products and think - if this product X, got together with Y, it would be pretty cool - kind of like if they had a kid together.

    Not too literally, but more on the conceptual level - my level of programming is low.

    E.g. Just some....

    - pocketable.io & datasette (+with some more charting) [https://pocketbase.io, https://datasette.io]

  • Ask HN: What development tools are you using for your current project?
    2 projects | news.ycombinator.com | 3 Feb 2024
    I'm working on a personal project and found myself looking for an alternative to Postman/Insomnia this morning. This made me realize i've been using the same tools for so long for work (mobile development, finance) that this project may be a good time to try out some new things.

    Here are a few tools that i've been using lately that I really enjoy:

    https://pocketbase.io/ - A dead-simple self-hosted firebase/supabase-like "backend in a box" using golang and sqlite. So far i've been really impressed. I've gone the route of extending the base offering with more go code and am really enjoying the experience.

    https://excalidraw.com/ - An open source whiteboarding tool. Slick to use and after learning some keybinds I've gotten pretty fast at throwing together diagrams to explain things to people on my team. The killer piece though is that the filetype is just json, so I can source control my diagrams. Even better, their "export to png" function has a box to embed the json data _into_ the png, allowing me to slap the diagram in places that only accept images (think confluence) and still be able to change the diagram later if needed. 10/10.

    https://docs.gitlab.com/ee/ci/ - Gitlab's CI/CD toolset is really impressive, and I've gotten really intimate with it's deeper features over the past year. I'd be curious though to hear from someone who's familiar with it vs it's competitors.

  • No longer accepting donations (Pocketbase)
    1 project | news.ycombinator.com | 22 Jan 2024
  • FLaNK Weekly 08 Jan 2024
    41 projects | dev.to | 8 Jan 2024
  • Pocketbase: Open-source back end in 1 file
    15 projects | news.ycombinator.com | 6 Jan 2024
    Is there an article somewhere, outside of the Pocketbase docs, presenting that pattern?

    - https://github.com/pocketbase/pocketbase/blob/master/core/ap...

  • Show HN: Build your startup or side project faster with these SaaS templates
    8 projects | news.ycombinator.com | 1 Jan 2024
    Really hard to find projects related Go and HTMX but I found pocketbase it is based on Go. Interesting and seems promising - https://pocketbase.io/ based on sqllite but great for simple SaaS products

What are some alternatives?

When comparing create-t3-app and pocketbase you can also consider the following projects:

vite - Next generation frontend tooling. It's fast!

supabase - The open source Firebase alternative.

next-pwa-contentlayer - Next.js PWA App with `next-i18next` and `Contentlayer`.

Appwrite - Build like a team of hundreds_

Refine - A React Framework for building internal tools, admin panels, dashboards & B2B apps with unmatched flexibility.

surrealdb - A scalable, distributed, collaborative, document-graph database, for the realtime web

Strapi - 🚀 Strapi is the leading open-source headless CMS. It’s 100% JavaScript/TypeScript, fully customizable and developer-first.

turbo - Incremental bundler and build system optimized for JavaScript and TypeScript, written in Rust – including Turbopack and Turborepo.

litestream - Streaming replication for SQLite.

next-auth - Authentication for the Web.

thin-backend - 🔥 Thin Backend is a Blazing Fast, Universal Web App Backend for Making Realtime Single Page Apps