The following notes default installation complete node and NPM
1, install Express new version of the Express-generator has been independent, the global installation of this package is OK.
NPM Install EXPRESS-GENERATOR-GD
2. Create a new folder and enter
3. Execute EXPRESS-E Initialization Project
4. NPM Install Project Dependency Package
5. NPM Start Start Project
6, in order to eliminate the need to manually kill each debug process and then restart the project trouble can be installed Superviser
Views folder. Ejs instead. HTML Setup method
1,express old wording, 3.* has not supported
- App.register ('. html ', require (' ejs '));
- App.set (' view engine ', ' Ejs ');
2,
- App.engine ('. html ', require (' Ejs '). RenderFile);
- App.set (' view engine ', ' html ');
3,
- App.engine ('. html ', require (' Ejs '). __express);
- App.set (' view engine ', ' html ');
2 and 3 can be used in Express.js 3.*
Node Learning notes