create-express-mvc-app
v1.0.39
Published
Custom Express app generator
Downloads
81
Maintainers
Readme
create-express-mvc-app
create-express-mvc-app
is a custom CLI tool for quickly scaffolding a new Express application with a predefined MVC structure. It automates the creation of a new Express app, sets up essential files, installs dependencies, and initializes a Git repository.
# Install the package globally
npm install -g create-express-mvc-app
# Create a new Express app after installation
create-express-mvc-app <appName> # with a specific name
create-express-mvc-app . # In the current directory
# Alternatively, use npx to run the package without global installation
npx create-express-mvc-app <appName> # with a specific name
npx create-express-mvc-app . # In the current directory