0

I'm trying to install express in my ubuntu using the next command:

sudo npm install -g express

But when I try to use express to create a new app:

express new_app_name

I get the next error(Is in spanish but it says "express command not found"):

express: no se encontró la orden

Can somebody help me?

Cris_Towi
  • 615
  • 1
  • 13
  • 25

1 Answers1

2

With the release of Express 4.0.0 or more it looks like you need to do sudo npm install -g express-generator. for generate a skeleton for your app

oscarmcm
  • 51
  • 5