In the context of your application (node_modules folder) locally install Express.
$ npm install express
What the global installation does is, set up system-wide available binaries. When you install it globally with express you will have an express binary. So the final conclusion is that you have to install it without -g.
I hope this helps you.