mohsin-mvc
v2.0.0
Published
A simple CLI tool to generate Node.js MVC project structure.
Downloads
315
Readme
Mohsin MVC
A simple CLI tool to generate Node.js MVC project structure.
Table of Contents
Features
- Create a basic MVC folder structure with a single command.
- Supports MySQL and MongoDB configurations.
- User-friendly command-line interface.
Installation
To install mohsin-mvc
, you can use npm. Run the following command:
npm install -g mohsin-mvc
-After installing, you can create a new MVC project structure by running:
mohsin-mvc create <project-name>
-Replace <project-name> with your desired project name.
-After creating your project, navigate into the project directory and install the required dependencies by running:
npm install express --save
npm install mysql2 --save