logoCreate Express App

Installation

Getting started with Create Express App is quick and straightforward. You can either use it directly with `npx` or install it globally on your system.

This is the fastest way to scaffold a new project without installing anything globally:

npx create-ex-app my-app

Global Installation

If you prefer using the CLI multiple times or want quicker access, install it globally:

npm install -g create-ex-app

Start Your Application

Once the project is created:

cd my-app
npm install
npm run dev

Your application will be running at: http://localhost:4000

On this page