No command line utility for express/node windows 7

I can't run the command express from the windows 7 command line. A tutorial I am following (here) suggests that I use the command line and call express to build a skeleton application.

I move into the directory of the express module in my node_modules area and attempt to locate a batch file or executable that is able to run from the command line.

I have found nothing, there are no files included in the module that can be run from the command line.

I am now very confused.

Does anyone understand where this elusive express command line utility exists?

I have found the batch file.

All command files for modules that are meant to be invoked via the command prompt are found in node_modules\.bin

So make sure that is in your path environment variable.

It looks like Jonathan Lonowski was right - the guide is a bit outdated. The latest command for using the express generator is:

npm install -g express-generator

This will still give the same directory structure suggested in the tutorial. More info on Express's Github page