UNPKG

node-prisma-structure

Version:

A Node.js API structure using Prisma ORM for scalable and modular development. This package includes a complete authentication API (signup, login, logout, password reset, and token-based authentication) and provides a well-organized directory structure fo

6 lines (4 loc) 142 B
var express = require('express'); var router = express.Router(); router.use('/auth', require('./Auth/auth.route')); module.exports = router;