3.0.1 • Published 9 months ago

express-mvc-setup v3.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago
# Express MVC Setup

![npm](https://img.shields.io/npm/v/express-mvc-setup) ![npm](https://img.shields.io/npm/dt/express-mvc-setup)

## Description

Express MVC Setup is a command-line tool that helps you scaffold a basic MVC structure for your Express.js applications. It allows you to quickly set up the necessary directories and files for organizing your application code, promoting best practices in project structure.

## Features

- Interactive CLI for choosing your programming language (JavaScript or TypeScript).
- Automatically creates a structured directory for your Express application.
- Configurable base path for the application structure.

## Installation

To install the package globally, run:

```bash
npm install -g express-mvc-setup

Usage

After installation, you can run the CLI tool from the command line:

express-mvc-setup [base-path]
  • base-path: (Optional) Specify the path where you want to create the MVC structure. If not provided, it defaults to the current working directory.

Example

express-mvc-setup my-express-app

This command will create a new directory named my-express-app with the necessary files and structure.

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Commit your changes (git commit -m 'Add new feature').
  5. Push to the branch (git push origin feature-branch).
  6. Open a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements