| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Npm package for initializing Node.js server projects with customizable configurations.
To use this package, initiate a Node.js server project with custom configurations using the following command:
npx node-server-init <folder-name>If you want to create a Node.js server project with name my-server, run the following command:
npx node-server-init my-serverIf you want to use current directory as the project folder, run the following command:
npx node-server-init .This npm package provides a flexible setup for Node.js server projects with the following features:
The project structure is as follows with all configurations:
my-server
└───src
├───app
│ ├───apis
│ │ └───user
│ │ ├───controllers
│ │ ├───repositories
│ │ └───services
│ ├───common
│ ├───enums
│ ├───handlers
│ ├───models
│ ├───routes
│ └───utils
└───config
Curious about the magic behind this package? 🌟 Wondering where all those files come from? 🧐
The secret sauce is the NodeTs-Express-Service-Based-Template!
P. S. I made that too! 😄
| Back | FazBrowse Home | New Git URL |