AngularJS项目环境搭建



Run a project
-------------
1. Install Node.js(set PATH="C:\Program Files\nodejs\")
2. Install Yeoman
   - npm install -g yo
3. Install Grunt locally
   - npm install grunt
4. Install git(set PATH="C:\Program Files\nodejs;C:\Program Files\Git\bin;C:\Program Files\Git\cmd")
5. Install bower dependency
   - npm install bower
6. Install project dependency
   - npm install
7. Install Ruby
8. Install Compass(download chunky_png-1.3.1.gem, compass-0.12.7.gem, fssm-0.2.10.gem, sass-3.2.19.gem and put them into Ruby install path)
    - CMD line (cd to Ruby install path)
    - gem install sass -v 3.2.19
    - gem install compass
9. Run the project
   - grunt serve


在以上过程中,会出现不能执行grunt命令, 解决方案:

安装grunt需要先安装node.js。现在node的安装也很方便,下载下来直接安装完成之后,在cmd下测试node --version和npm --version是否正确显示即可。

之后需要借助npm来安装grunt-cli,注意,不是安装grunt。想要在cmd中使用grunt命令,需要npm install -g grunt-cli。完成后测试grunt --version看是否正确显示grunt-cli版本。

这样,就完成了grunt的安装。


还出现 :Warning:You need to have Ruby and Compass installed and in your system PATH for
Use --force to continue. 解决方案:

把你的ruby和compress的安装目录加入path环境变量中即可.控制面板->系统->属性->高级系统设置->环境变量。 在用户变量中,修改或者增加PATH变量,值增加或者修改为你的ruby路径,例如F:\Program Files\Ruby200-x64\bin;

你可能感兴趣的:(AngularJS)