On the Internet to learn a set of Everest training free Nodejs tutorial, address is: http://www.zhufengpeixun.com/kecheng/detail_954636
Record the learning process.
The first is the installation of the environment:
IDE Choose Webstrom 10, direct official download: http://www.jetbrains.com/webstorm/.
Installation Nodejs environment, also official website: https://nodejs.org/en/.
Then install Bower,gulp via NPM: npm install -g bower,
NPM installs--global Gulp, note the global installation.
Create a new project, create a new folder, called Zhufengshop. Then open the project in Webstorm.
Under this directory, initialize the node environment: NPM init.
Create a new app folder in the root directory and create a new Lib folder in the app directory to store third-party libraries.
Create a new. bowerrs file in the root directory and configure it in it, all third-party libraries installed through Bower are installed in the App/lib directory: {"directory": "App/public/lib"}.
Install Jquey,bootstrap,express,augular and other frames through bower.
Bower Install Jquey--save
Bower Install bootstrap--save
Bower Install angular Angular-route--save
Bower Install Express--save
Note Add the--save parameter so that the dependencies are configured in the Bower.json file.
Just write it down here and continue next time.
Everest Nodejs Online Shop learning (i)