Install Express on the basis of node. JS already installed on your Windows
Part I: Installing Express
First step: Execute npm install-g express-generator
Note: This must be installed, or the Express command will not be found when creating the Express project
Step two: Execute npm install-g Express
Step three: Execute express-v
Note:' V ' is uppercase, if the Express installation is successful, the version number will be displayed
Part II: Creating an Express Project
Step one: Perform Express youprojectname
Note:Youprojectname is the name of your project, choose the right project name according to your requirements
Step Two: Enter your project:CD youprojectname
Step three: Perform npm install in the directory of your project
Fourth step: Start your project and execute NPM start
Part III: Accessing your project in the browser
Open your browser and type in the Address bar:http://127.0.0.1:3000
And then you'll see: Welcome information for Express
Finally: Start your express journey and enjoy your work!
Install Express under Windows