TypeScript Prisma

Open-source TypeScript projects categorized as Prisma

Top 23 TypeScript Prisma Projects

  • Prisma

    Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB

    Project mention: End-To-End Polymorphism: From Database to UI, Achieving SOLID Design | dev.to | 2024-03-28

    Unfortunately Prisma hasn’t supported polymorphism yet. As such, you can't use inheritance to model the entity in the same way as in your programming language, as depicted in the above class diagram. The good news is that we could intimate it using table inheritance to imitate it.

  • trpc

    🧙‍♀️ Move Fast and Break Nothing. End-to-end typesafe APIs made easy.

    Project mention: Key differences between GraphQL and RESTful API | dev.to | 2023-11-09

    RESTful API: RESTful API does not have machine-readable metadata cacheable, and query validation is not available.(There are some libraraies tried to solve this issue like TRPC)

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

  • cal.com

    Scheduling infrastructure for absolutely everyone.

    Project mention: Start your own (side) business with open-source in mind | dev.to | 2024-02-29

    Cal.com is an open-source event-juggling scheduler for everyone, and is free for individuals.

  • create-t3-app

    The best way to start a full-stack, typesafe Next.js app

    Project mention: Localized tRPC errors | dev.to | 2024-03-16

    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.

  • taxonomy

    An open source application built using the new router, server components and everything new in Next.js 13.

    Project mention: T3 stack with app router and supabase | dev.to | 2024-01-05

    I am building this app with inspiration from Taxonomy and Acme corp so a lot of the design comes from there.

  • redwood

    The App Framework for Startups

    Project mention: Release Radar • February 2024 Edition | dev.to | 2024-02-29

    Frameworks are a theme with this month's Release Radar, so here's another. Redwood is a full-stack, JavaScript/TypeScript web application, designed to scale with you. It uses React frontend for the frontend and links to a custom GraphQL API for the backend. The latest version includes a bunch of breaking changes such as moving to Node 20.0, the Redwood Studio, and highly requested GraphQL features such as Realtime, Fragments, and Trusted Documents, the server file, new router hooks, and heaps more. If you've previously used Redwood, you'll probably want to upgrade to version 7.0. The team have put together a handy migration guide for you to follow.

  • Blitz

    ⚡️ The Missing Fullstack Toolkit for Next.js

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • amplication

    🔥🔥🔥 Open-source backend development platform. Build production-ready services without wasting time on repetitive coding.

    Project mention: Creating a Restaurant Finder Application Using ReactJS and Amplication | dev.to | 2024-01-14

    Go to https://amplication.com.

  • noodle

    Open Source Education Platform

    Project mention: Moodle: Open-Source LMS | news.ycombinator.com | 2023-07-16

    There is a (hillariously named) alternative noodle [1] that aims to compete in this space. It is under development but looks polished.

    [1] https://noodle.run

  • wasp

    The fastest way to develop full-stack web apps with React & Node.js.

    Project mention: Garden – The Design System by Zendesk | news.ycombinator.com | 2024-03-07
  • graphql-playground

    🎮 GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration)

    Project mention: Migrating Netflix to GraphQL Safely | news.ycombinator.com | 2023-08-14

    > FYI, GraphiQL is deprecated, GraphQL Playground is a good alternative.

    You have this backwards.

    https://github.com/graphql/graphql-playground/issues/1366#is...

    https://github.com/graphql/graphiql

  • howtographql

    The Fullstack Tutorial for GraphQL

  • prisma-examples

    🚀 Ready-to-run Prisma example projects

    Project mention: Implementing vector search with OpenAI, Next.js, and Supabase | dev.to | 2024-03-05

    The usefulness of vector search is already evident by the rate of generative AI adoption. Almost every mainstream documentation site now has an Ask AI button, including Supabase, Netlify, Prisma, and many more.

  • documenso

    The Open Source DocuSign Alternative.

    Project mention: Docusign updates terms of service, training proprietary AI using user data | news.ycombinator.com | 2024-02-29

    Unknown if it's better or worse but https://support.google.com/docs/answer/12315692?hl=en ("Send signature requests & sign documents with eSignature")

    and there have also been a bunch of alleged competitors submitted:

    https://github.com/docusealco/docuseal#readme https://news.ycombinator.com/item?id=36798593

    https://github.com/OpenSignLabs/OpenSign#readme https://news.ycombinator.com/item?id=38052344

    https://github.com/documenso/documenso#readme https://news.ycombinator.com/item?id=38404129

    but they're all AGPLv3 and the network effect is very real

  • typehero

    Connect, collaborate, and grow with a community of TypeScript developers

    Project mention: Exploring the Power of Square Brackets in TypeScript | dev.to | 2023-12-19

    For those interested in diving deeper and honing their TypeScript skills, the TypeScript Handbook is an excellent resource for exploring these and other features in more detail. Additionally, online platforms like TypeHero provide interactive learning experiences and challenges that can help solidify your understanding of TypeScript and its various techniques, including the use of square brackets for advanced type manipulations. Utilising these resources can greatly enhance your TypeScript proficiency and open up new possibilities in your programming endeavours.

  • platforms

    A full-stack Next.js app with multi-tenancy and custom domain support. Built with Next.js App Router and the Vercel Domains API.

    Project mention: Problem with SubDomains (Multitenancy) | /r/nextjs | 2023-09-15

    I am trying to add subdomains to my project where I am trying to have [slug].domainname.com and then also just the regular dominname.com, I structured my code app router to be app, then api, [subdomain], and home. then i created middleware based on the platforms template code https://github.com/vercel/platforms/tree/main Heres the middleware: import { NextRequest, NextResponse } from "next/server"; export const config = { matcher: [ /* * Match all paths except for: * 1. /api routes * 2. /_next (Next.js internals) * 3. /_static (inside /public) * 4. all root files inside /public (e.g. /favicon.ico) */ "/((?!api/|_next/|_static/|_vercel|[\\w-]+\\.\\w+).*)", ], }; export default function middleware(req) { const url = req.nextUrl;

  • precedent

    An opinionated collection of components, hooks, and utilities for your Next.js project.

  • open-saas

    A free, open-source SaaS app starter for React & Node.js with superpowers. Production-ready. Community-driven.

    Project mention: 🎉 Our web framework reached 9,000 stars on GitHub! ⭐️ 9️⃣0️⃣0️⃣0️⃣ ⭐️ | dev.to | 2024-03-05

    9,500 stars and almost 3 years later, here we are today. Wasp is getting close to entering the elite 10,000 stars club on GitHub, next to the giants of the industry. The framework we started, and developed further with the invaluable feedback from the community, is being used by all kinds of developers - from weekend projects, to startups and top enterprises. Startups made with Wasp have been acquired. I just saw a job ad today on Upwork, where a company is hiring for Open SaaS (an open-source, free boilerplate starter for React & Node.js, powered by Wasp) developers 🤯.

  • ghostfolio

    Open Source Wealth Management Software. Angular + NestJS + Prisma + Nx + TypeScript 🤍

    Project mention: Hacktoberfest 2023 with Ghostfolio | dev.to | 2023-09-26

    At Ghostfolio, we are very excited to participate in Hacktoberfest for the second time, looking forward to connecting with new and enthusiastic open-source contributors. Hacktoberfest is a month-long celebration of open-source projects, their maintainers, and the entire community of contributors. Each October, open source maintainers from all over the world give extra attention to new contributors while guiding them through their first pull requests on GitHub. This year the event celebrates its 10th anniversary.

  • nestjs-realworld-example-app

    Exemplary real world backend API built with NestJS + TypeORM / Prisma

  • typescript-express-starter

    📘 Quick and Easy TypeScript Express Starter

  • nestjs-prisma-starter

    Starter template for NestJS 😻 includes GraphQL with Prisma Client, Passport-JWT authentication, Swagger Api and Docker

  • briOS

    My personal website.

    Project mention: Ask HN: What websites are you inspired by? | news.ycombinator.com | 2023-05-12
  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-03-28.

TypeScript Prisma related posts

Index

What are some of the best open-source Prisma projects in TypeScript? This list will help you:

Project Stars
1 Prisma 36,783
2 trpc 32,226
3 cal.com 28,031
4 create-t3-app 22,842
5 taxonomy 17,278
6 redwood 16,682
7 Blitz 13,348
8 amplication 13,240
9 noodle 11,273
10 wasp 10,649
11 graphql-playground 8,666
12 howtographql 8,653
13 prisma-examples 5,781
14 documenso 5,725
15 typehero 5,077
16 platforms 5,071
17 precedent 4,403
18 open-saas 4,106
19 ghostfolio 3,399
20 nestjs-realworld-example-app 2,868
21 typescript-express-starter 2,527
22 nestjs-prisma-starter 2,167
23 briOS 2,046
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com