ditoslav
ditoslav

Reputation: 4872

Global npm dependency express won't run

So I have been using npm for some time and have done a recent reinstall from win8.1 to win8.1. I know it worked before and it says so here as well.

Since then I have installed npm i -g express but it won't run.

'express' is not recognized as an internal or external command, operable program or batch file.

I tried running express from console and it won't run.

This is in my path: C:\Users\xxx\AppData\Roaming\npm

Upvotes: 0

Views: 49

Answers (1)

Jordonias
Jordonias

Reputation: 5848

The CLI is express-generator.

Do npm install -g express-generator.

Upvotes: 1

Related Questions