13 comments

  • stack_framer14 minutes ago
    The pronunciation of &quot;Vercel&quot; near the end of the &quot;Typebase in 100s&quot; video was <i>VER</i>-cel, with the emphasis on the first syllable, instead of ver-<i>CEL</i> with the emphasis on the second syllable.<p>Was the video generated by AI?
  • pyrolistical6 hours ago
    It’s like next.js but for backend.<p>Personally not for me. These are very productive once you learn the shape they expect.<p>But the wheel needs to be reinvented on how to do everything.<p>I ran have straight forward verbose code with no hidden control flow
    • jodacola3 hours ago
      &gt; once you learn the shape they expect<p>I’m reminded of this essay discussing frameworks versus libraries [0].<p>[0] <a href="https:&#x2F;&#x2F;tomasp.net&#x2F;blog&#x2F;2015&#x2F;library-frameworks&#x2F;" rel="nofollow">https:&#x2F;&#x2F;tomasp.net&#x2F;blog&#x2F;2015&#x2F;library-frameworks&#x2F;</a>
    • NoItsDanger2 hours ago
      I’ve been saying for years we need CCR (Client Centric Rendering).<p>What we do is have the server just serve the page and let the client handle most of the rendering.<p>It’s novel and innovative
    • virgil_disgr4ce5 hours ago
      Am I missing something? The entire point of next.js is that it&#x27;s backend+frontend in one project
      • apsurd5 hours ago
        that’s likely the promise but it’s so confusing and high cognitive overhead to maintain that backend &lt;-&gt; frontend relationship. ‘use client’ - i think the special sauce for why people use nextjs is all frontend based. the frontend that comes from the backend.<p>nextjs dx is a special kind of hell. disclaimer: im just a simple rails guy.
  • phren0logy7 hours ago
    I love the (well-disclosed) fake testimonials. Hilarious!
    • adamddev14 hours ago
      &gt; “I’ve told four separate therapists about Typebase. Two stopped taking me as a client. The other two are now shipping an app with it.”<p>So good. I laughed out loud at this.
  • rgbrgb7 hours ago
    I’ve been curious about trying the Supabase type of RLS model for an app but haven’t yet. I like the idea of the db defined api like postgraphile and hasura but had trouble with testing and ergonomics. This looks pretty nice though, it’s cool that you’re thinking about ergonomics for working with coding agents. I feel like a hard thing with that rn is that everyone is kind of figuring out different workflows for AI coding right now so it’s hard to optimize DX. Can you talk a little about your personal agent workflow and how this fits it?
    • k4rli6 hours ago
      I&#x27;ve only had experience in one full-stack project with supabase RLS so experience is limited. However it seemed like a mess. Seems much more human-maintainable to have a classic spring&#x2F;golang backend. For sure in some projects, esp mobile apps, it makes more sense, and fable-level models might also keep it from being full spaghetti.<p>Also Supabase at that time wasn&#x27;t reliable and it&#x27;s not really made for self-hosting. Felt almost as bad as Github stability these days.<p>Still, based on this limited experience, I&#x27;ve been avoiding RLS and supabase.
      • NewJazz1 hour ago
        I thought supabase was mainly for self hosting? Like it was self-hostable firebase... Not too familiar with it though.
  • dsabanin49 minutes ago
    Looks useful, congrats
  • xixixao8 hours ago
    Very cool!<p>Note that you can run Convex on top of your own Postgres, and we do this for our internal apps, with very nice performance (plenty for our internal use cases).
  • catlifeonmars5 hours ago
    What, in your opinion, is this not a good fit for?
    • SillyUsername3 hours ago
      Enterprise software, stuff that you expect to scale exactly because it has queues and distributed computing.
  • bosky1017 hours ago
    very cool. though the deploy wasnt clear if i can just run migration on some pg url. and it wasnt clear if i can bind some middleware into my existing app server (like express)
  • desireco424 hours ago
    I was about the ask a question but you just answered how it is built. I guess I will try it out, it sounds really good.<p>I love your approach, fake testemonials and all.
  • ramon1566 hours ago
    Fake reviews are a hard no-no imo. Really weird addition, but I suppose it wasn&#x27;t you who got the idea.<p>Looks an awful lot like a orpc, just built on top of drizzle instead of raw queries. I&#x27;m sure some people want this, but it seems like gross duct tape that will bite you in three years
  • scrollaway6 hours ago
    Scratching my head a little bit here, I&#x27;m not sure how this differs from NextJS (or Vite) with a layer of drizzle &amp; better-auth.<p>Not that that layer isn&#x27;t important. We ended up building something like this at Ingram, nextkit: <a href="https:&#x2F;&#x2F;github.com&#x2F;ingram-technologies&#x2F;nextkit" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ingram-technologies&#x2F;nextkit</a> - but we distribute it as a set of micro libraries that work well together rather than a unified framework. (Auth is nk-auth, built on top of betterauth, and sql is nk-db, built on top of drizzle)<p>You got to pretty much the same conclusions we did though regarding the &quot;why&quot;.
  • SifatAhmed6 hours ago
    This looks great. Question specifically on the Cloudflare Workers target: when you deploy there, does Typebase use D1 for the DB, or does the Postgres&#x2F;Neon backend stay the same regardless of which server target you pick (Vercel&#x2F;Workers&#x2F;Deno) - i.e. is the DB layer decoupled from the server runtime, or does choosing Workers also mean choosing D1? I ask because I&#x27;ve shipped a small Workers+D1 service and the main friction I&#x27;ve hit isn&#x27;t the server code, it&#x27;s Workers&#x27; constraints around D1 (no long-running connections, HTTP-based driver quirks) - curious whether Typebase abstracts that away or whether you still feel it at the DB layer when targeting Workers specifically.
    • optimisticedits6 hours ago
      I see no code there to automatically pick D1 for the DB when you deploy to Cloudflare.<p>On Cloudflare, it should use the `@neondatabase&#x2F;serverless` driver configured here <a href="https:&#x2F;&#x2F;github.com&#x2F;typebase-io&#x2F;monorepo&#x2F;blob&#x2F;fa3af0b71126caa4c3158256fdf329adbe2ca8a6&#x2F;apps&#x2F;cli&#x2F;src&#x2F;helpers&#x2F;constants.ts#L30" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;typebase-io&#x2F;monorepo&#x2F;blob&#x2F;fa3af0b71126caa...</a>
  • mermadicsolutio5 hours ago
    [dead]