1. Установите генератор-угловой-полный стек

npm install -g [email protected]

2. Запустите проект

mkdir project-name
cd project-name
yo angular-fullstack

3. Иметь следующие настройки

# Client
? What would you like to write scripts with? JavaScript
? What would you like to write markup with? HTML
? What would you like to write stylesheets with? CSS
? What Angular router would you like to use? uiRouter
? Would you like to include Bootstrap? Yes
? Would you like to include UI Bootstrap? Yes
# Server
? Would you like to use mongoDB with Mongoose for data modeling? Yes
? Would you scaffold out an authentication boilerplate? Yes
? Would you like to include additional oAuth strategies? Google, Facebook, Twitt
er
? Would you like to use socket.io? Yes

4. As today (16/11/2016), some library is out-dated, and can not be complied, so we need to change the package.json file to the following code, and try npm install again.
"devDependencies": {
  "grunt-node-inspector": "latest",
  "grunt-contrib-imagemin": "latest"
}
5. Now all dependencies can be installed, we are ready to start the web service. Start your mongodb server and then type.
grunt serve
6. Hola! Your website is now up. It will appeared in your browser automatically.  Congratulation!