Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mitchi-02/node-express-prisma-starter

This is a node 18 starter with express, prisma and swagger.
https://github.com/mitchi-02/node-express-prisma-starter

express javascript nodejs prisma swagger swagger-ui

Last synced: 15 days ago
JSON representation

This is a node 18 starter with express, prisma and swagger.

Awesome Lists containing this project

README

        

# Node 18 with Prisma starter
Node 18 starter with express, prisma and swagger.
### Install Dependencies
npm install
### Install nodemon as global dependency if it's not already installed (execute in sudo-admin mode)
npm install -g nodemon
### Change .env.example to .env and choose the server port number and write database_url with the specified format
### If there are new models in config/db/schema.prisma
npx prisma migrate dev
### To start dev server
npm run dev