1.2.5 • Published 3 years ago
create-node-tree v1.2.5
Create Node Tree 
Create Node Tree is a package created to help build the basic structure of the Node.js application with one click.
Use
npx create-node-tree my-node-app
cd my-node-app
What do you receive?
- Controllers folder (Controllers for routes should be written here)
- Routes folder (Routes should be written here)
- Models folder (All the database models should be specified here)
- Utils folder (All the additional custom-written utilities should be specified here)
- App.js file (All the basic settings like middleware, route middleware, and global error handling middleware should be specified here)
- Server.js file (All the settings like express server, database connecting, connecting environmental variables should be written here)