Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

create-express-mvc-app

garaisourav1243ISC1.0.39

Custom Express app generator

express, express-generator, express-app, mvc, express-mvc, nodejs, npm, express-boilerplate, create-express-mvc-app, create-express-app-mvc, node, mvc-boilerplate, nodejs-boilerplate, create-express-app

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