GitHub
github.com › FREDVUNI › prisma-express
GitHub - FREDVUNI/prisma-express: Rest API in Node , Express app server using prisma ORM and postgresQL
Rest API in Node , Express app server using prisma ORM and postgresQL - GitHub - FREDVUNI/prisma-express: Rest API in Node , Express app server using prisma ORM and postgresQL
Author FREDVUNI
GitHub
github.com › YounesseElkars › Express-Prisma-TypeScript
GitHub - YounesseElkars/Express-Prisma-TypeScript: 🌐 Express RESTful API with TypeScript and Prisma , managing both authentication and CRUD operations.
An Express-based RESTful API with TypeScript and Prisma , managing both authentication and CRUD operations.
Starred by 32 users
Forked by 20 users
Languages TypeScript 98.5% | JavaScript 1.5%
GitHub
github.com › vincent-queimado › express-prisma-ts-boilerplate
GitHub - vincent-queimado/express-prisma-ts-boilerplate: 🚀 Fast and Easy Rest API Boilerplate with Express and Typescript Prisma ORM, Zod validation, Winston logger, Passport-jwt, Swagger, Jest, Eslint, Prettier, Husky, live reload, among others. A boilerplate for building production-ready RESTful APIs using Node.js. Happy coding! 💻💪
🚀 Fast and Easy Rest API Boilerplate with Express and Typescript 🌟 Prisma ORM, Zod validation, Winston logger, Passport-jwt, Swagger, Jest, Eslint, Prettier, Husky, live reload, among others.
Starred by 35 users
Forked by 3 users
Languages TypeScript 87.4% | JavaScript 12.5% | Shell 0.1%
GitHub
github.com › antonio-lazaro › prisma-express-typescript-boilerplate
GitHub - antonio-lazaro/prisma-express-typescript-boilerplate: RESTful API server boilerplate suing Node JS, TypeScript, Express and Prisma. · GitHub
A boilerplate/starter project for quickly building RESTful APIs using Node.js, TypeScript, Express, and Prisma.
Starred by 292 users
Forked by 68 users
Languages TypeScript
GitHub
github.com › Bonekyaw › node-express-prisma-rest
GitHub - Bonekyaw/node-express-prisma-rest: Node express Typescript Prisma ORM REST api
Node express Typescript Prisma ORM REST api. Contribute to Bonekyaw/node-express-prisma-rest development by creating an account on GitHub.
Starred by 36 users
Forked by 6 users
Languages TypeScript 100.0% | TypeScript 100.0%
Stackademic
blog.stackademic.com › building-restful-apis-with-express-and-prisma-a-comprehensive-tutorial-0738eecbc374
Building RESTful APIs with Express and Prisma: A Comprehensive Tutorial | by Craftsman | Stackademic
February 29, 2024 - This example demonstrates the complete implementation of the MVC (Model-View-Controller) architecture for building a RESTful API with ExpressJS and Prisma. Controller: Handles incoming requests, invokes appropriate service functions, and sends back responses to clients. Service: Contains business logic, interacts with the database through the model, and performs data processing tasks. Model: Represents the data layer, interacts directly with the database using Prisma and performs CRUD operations on data entities. Happy Coding! Github: https://github.com/David6811/express_prisma.git
GitHub
github.com › Walidnurudin › prisma-express
GitHub - Walidnurudin/prisma-express · GitHub
Update your index.ts file by adding a new endpoint to your API: app.post('/user/:id/profile', async (req, res) => { const { id } = req.params const { bio } = req.body const profile = await prisma.profile.create({ data: { bio, user: { connect: { id: Number(id) } } } }) res.json(profile) }) Restart your application server and test out your new endpoint.
Author Walidnurudin
GitHub
github.com › multipliedtwice › prisma-generator-express
GitHub - multipliedtwice/prisma-generator-express: This tool automatically generates Express/Fastify CRUD API that uses Prisma to handle database operations and validates responses with Zod schemas to ensure the integrity of input and output. · GitHub
May 11, 2026 - Prisma generator that creates Express or Fastify CRUD API routes with OpenAPI documentation from your Prisma schema.
Starred by 28 users
Forked by 6 users
Languages TypeScript 86.2% | JavaScript 13.8%
GitHub
github.com › railwayapp-templates › expressjs-prisma
GitHub - railwayapp-templates/expressjs-prisma · GitHub
Starred by 11 users
Forked by 14 users
Languages TypeScript 99.0% | Procfile 1.0%
GitHub
github.com › Nditah › hello-prisma
GitHub - Nditah/hello-prisma: How To Build a REST API with Node, Prisma and PostgreSQL · GitHub
Prisma Client is an auto-generated and type-safe query builder that you can use to programmatically read and write data in a database from a Node.js or TypeScript application. You will use it for database access within your REST API routes, replacing traditional ORMs, plain SQL queries, custom data access layers, or any other method of talking to a database.
Author Nditah
GitHub
github.com › kumarsonu676 › node-express-prisma-starter-rest-api
GitHub - kumarsonu676/node-express-prisma-starter-rest-api: Production-ready REST API starter template built with Node.js, Express, and TypeScript. Features JWT authentication, PostgreSQL with Prisma ORM, Docker support, CI/CD pipeline, and best practices for scalable backend development. Perfect for quickly bootstrapping new Node.js projects with enterprise-grade architecture. · GitHub
Production-ready REST API starter template built with Node.js, Express, and TypeScript. Features JWT authentication, PostgreSQL with Prisma ORM, Docker support, CI/CD pipeline, and best practices for scalable backend development.
Author kumarsonu676
GitHub
github.com › zexoverz › express-prisma-template
GitHub - zexoverz/express-prisma-template · GitHub
Starred by 5 users
Forked by 4 users
Languages JavaScript
CodeSandbox
codesandbox.io › p › github › mattdanielbrown › basic-express-prisma-rest-api
basic-express-prisma-rest-api
CodeSandbox is a cloud development platform that empowers developers to code, collaborate and ship projects of any size from any device in record time.
GitHub
github.com › mukunthan7 › rest-prisma-express
GitHub - mukunthan7/rest-prisma-express: SQL based REST API
SQL based REST API . Contribute to mukunthan7/rest-prisma-express development by creating an account on GitHub.
Author mukunthan7
GitHub
github.com › LuchoBazz › express-ts-rest-starter-kit
GitHub - LuchoBazz/express-ts-rest-starter-kit: Express.js + Postgresql + Prisma + Typescript Starter Kit · GitHub
This starter kit provides a template for creating Express.js projects with Rest API as the API layer. 🚧 This project is currently under development and may contain bugs or incomplete features.
Author LuchoBazz
GitHub
github.com › prisma › prisma-examples
GitHub - prisma/prisma-examples: 🚀 Ready-to-run Prisma example projects
The compute directory contains applications ready to deploy to Prisma Compute. ... Hono API deployed to Prisma Compute with @prisma/cli.
Starred by 6.6K users
Forked by 1.5K users
Languages TypeScript 84.7% | JavaScript 5.5% | Vue 4.3% | CSS 2.0% | Astro 1.6% | HTML 0.8%
GitHub
github.com › ascii-16 › expressjs-typescript-prisma-boilerplate
GitHub - ascii-16/expressjs-typescript-prisma-boilerplate: An express + typescript boilerplate with prisma preconfigured with eslint + prettier, swagger, husky, jest and supertest · GitHub
A tool for designing, building, and documenting RESTful APIs · Commitizen · A tool for making it easier to follow the conventional commit format for Git commits · Jest · A JavaScript testing framework with a focus on simplicity and ease ...
Starred by 85 users
Forked by 15 users
Languages TypeScript 77.0% | CSS 11.3% | HTML 5.2% | Shell 4.2% | Makefile 1.5% | JavaScript 0.8%
GitHub
github.com › sinh117801 › express-ts-rest-api-boilerplate
GitHub - sinh117801/express-ts-rest-api-boilerplate: Sample API with ExpressJS, Typescript, Relational Database with Prisma.
Sample API with ExpressJS, Typescript, Relational Database with Prisma. - sinh117801/express-ts-rest-api-boilerplate
Author sinh117801