angularJS--环境配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularJS--环境配置相关的知识,希望对你有一定的参考价值。
1、Node.js下载安装
下载地址:http://nodejs.org/
安装完后,一般会把nodeJs的安装路径写入Path环境变量里。(如没有的话,请手动配置)
检查安装是否成功(dos命令窗口):node –version 或 node -v
安装Testacular单元测试程序: npm install karma
npm install -g express
2、git下载安装
下载地址:http://git-scm.com/
安装完后,一般会把nodeJs的安装路径写入Path环境变量里。(如没有的话,请手动配置)
以下命令从Github复制本教程项目的源代码文件(dos命令窗口):
git clone git://github.com/angular/angular-phonecat.git
这个命令会在您当前文件夹中建立新文件夹angular-phonecat。
3、服务器的启动命令 npm start
4、测试服务器的启动命令 npm test
5、入门学习的例子的获取 git checkout -f step-0
6、例子的运行 cd到angular-phonecat文件夹
启动: npm start
导出例子程序:
git checkout -f step-0
例子代码生产在文件夹angular-phonecat/app下
npm start
浏览器中运行例子:
http://localhost:8000/app/index.html
如果出现空白页,运行
http://localhost:8000/
以上是关于angularJS--环境配置的主要内容,如果未能解决你的问题,请参考以下文章