Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mitchi-02/node-express-prisma-starter
- Owner: Mitchi-02
- Created: 2023-02-27T09:06:31.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-25T15:13:00.000Z (about 1 year ago)
- Last Synced: 2024-11-24T04:16:06.323Z (3 months ago)
- Topics: express, javascript, nodejs, prisma, swagger, swagger-ui
- Language: JavaScript
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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