Angular.js基本知识

1.最新版本1.3.0,放弃IE8、删除了一堆过时的API,并引入了单向数据绑定;
2.四大核心特性:MVC、模块化、指令系统、双向数据绑定;
3.前端开发工具
(1) 编辑工具IDE:sublim、webStrom
(2)断点调试工具:chrom插件batarang
(3)版本管理工具:git
(4)代码合并和混淆工具:grunt 依赖 grunt-contrib-uglify:对代码进行混淆, grunt-contrib-concat:合并文件, grunt-contrib-watch监控文件变化
(5)依赖管理工具:bower
(6)单元测试工具:KARMA、jasmine
(7)集成测试工具:protractor
(8)开发调试工具:node.js,http-server:模拟测试数据
2.示例:运行angular-phonecat 项目 :是angularjs官网学习示例

(1)git下载地址:
git clone –depth=14 https://github.com/angular/angular-phonecat.git
(2)安装nodejs:https://nodejs.org/en/
(3) 进入D:\angularjs\angular-phonecat所在目录,在cmd执行指令:npm start
Angular.js基本知识_第1张图片
(3)服务启动后:浏览器输入http://localhost:8000/
Angular.js基本知识_第2张图片
即可访问。

你可能感兴趣的:(angular-js,phonecat,angularjs,nodejs)