《Reliable Javascript》出版商Wrox。
ISBN:978‐1‐119‐02872‐7.
这本书献给磨练自己技艺的Javascript程序员,你让世界变得更美好。
Javascript 像一个被宠坏的富家小姐,她继承了家里的生意,但她正在迎着挑战不停的成长,她变得严肃,有责任感,她正在向人显示她的强大。
她早期的工作,像个半吊子,除了短脚本外,她无法胜任复杂的工作。她的主要任务无非就是无效的输入,她让它变个颜色,点击一个按钮,她让它跳到另外一个页面。尽管她早期的工作很简单,但很多人在工作中和她成了朋友。而现在很多程序员对她的印象也还是这样。
但是,一场改变重新定义了她,整个世界慢慢都向网络靠拢,而网络正是她的主场。
90年代末,一场革命,由微软打响,微软推出了iframe和HttpRequest。2004年,Google推出了Gmail , 2005 Google推出了Google Map。整个世界意识到Web可以做得这么丰富,浏览器不再只是简单的回应一些服务器返回的数据。
这样Javascript小公主被别人寄予了更多的愿望,而她需要更多的帮助。
而Javascript需要的帮助,很快就来到了。JQuery,Ext,Ember,Knockout,Backbone还有AngularJS,这些有用的框架给Javascript提供了规范和架构。尽管Javascript有很多的框架,但是她依然很难驯服。
1. Javascript 很容易写出灾难性的代码
Javascript的方法与变量可以是全局的。如果是局量定义的变量比较容易定位,如果变量是全局的则定位的难度会不断变大。
false == '0'
false会被先转化为0,'0'也会被转化为0,所以结果是true,
false == 'false'
同样false会被转化为0,然后'false'会被转化为NaN,所以结果是false
2. Javascript 很容易无意间被破坏代码
如果你错误的定义了一个属性,当你输入正确属性时,Javascript的编译性会把正确的属性值认为是undefined,这使Javascript的重构变成了灾难。
由于Javascript 编译的不足,建议使用测试驱动。
书籍源代码下载地址:
案例研究:
d3js : js的图形框架
作者:Mike Bostock
d3 代表 Data-Driven Documents,
rj3.js d3js的一部分,作者抽出来讲的。
在变量之前加一个+, 可以将字符串转化为数字
在Javascript里,闭包是一个很好用的功能,每个函数都是一个闭包。
SOLID原则:
1. Single Responsibility Principle 单一责任原则
2. Open/Closed Principle 开关原则
3. Liskov Substitution Principle 里氏替换原则
里氏替换原则:
Liskov替换原则:子类型必须能够替换它们的基类型
1. 如果每一个类型为T1的对象o1,都有类型为T2的对象o2,使得以T1定义的所有程序P在所有的对象o1都代换为o2时,程序P的行为没有变化,那么类型T2是类型T1的子类型。
2. 换言之,一个软件实体如果使用的是一个基类的话,那么一定适用于其子类,而且它根本不能察觉出基类对象和子类对象的区别。只有衍生类替换基类的同时软件实体的功能没有发生变化,基类才能真正被复用。
3.里氏代换原则由Barbar Liskov(芭芭拉.里氏)提出,是继承复用的基石。
4. 一个继承是否符合里氏代换原则,可以判断该继承是否合理(是否隐藏有缺陷)。
应当尽量从抽象类继承,而不从具体类继承。
一般而言,如果有两个具体类A、B有继承关系,那么一个最简单的修改方案是建立一个抽象类C,然后让类A和B成为抽象类C的子类。即如果有一个由继承关系形成的等级结构的话,那么在等级结构的树形图上面所有的树叶节点都应当是具体类,而所有的树枝节点都应当是抽象类或者接口。
4. Interface Segregation Principle 接口隔离原则
用户应该看到的是紧凑的,有联系的接口,而不是繁冗的代码。
5. Dependence Injection Principle 依赖注入原则
开关原则:
程序可以开放扩展,但关闭所有对原功能的扰乱的操作。
第二章 使用工具
1. 使用测试框架
jasmine
相关推荐
《Reliable JavaScript》是一本专注于JavaScript编程安全性的书籍,作者是Lawrence D. Spencer和Seth H. Richards。本书旨在引导读者如何在编写JavaScript代码时避免常见错误,确保代码的健壮性和可靠性。书中不仅...
Reliable JavaScript provides the solution in the form of a test-driven workflow that produces robust applications that stand the test of time. This book uses unit tests to explain, demonstrate, and ...
Reliable JavaScript demonstrates how to create test-driven development for large-scale JavaScript applications that will stand the test of time and stay accurate through long-term use and maintenance....
No matter how long you’ve been writing JavaScript code, Effective JavaScript will help deepen your understanding of this powerful language, so you can build more predictable, reliable, and ...
No matter how long you’ve been writing JavaScript code, Effective JavaScript will help deepen your understanding of this powerful language, so you can build more predictable, reliable, and ...
"《项目管理精华:给非职业项目经理人的项目管理书》读书笔记" 《项目管理精华:给非职业项目经理人的项目管理书》是一本专门为非职业项目经理人设计的项目管理书籍,本书提供了实用的项目管理技巧,总结了项目管理...
By learning how to expose JavaScript's true identity as a functional language, we can implement web apps that are more powerful, easier to maintain and more reliable. The [removed] Functional ...
Mastering JavaScript Design Patterns
Unlock the powers of functional programming hidden within JavaScript to build smarter, cleaner, and more reliable web apps About This Book Discover what functional programming is, why it's effective,...
True PDF Write reliable code to create powerful applications by mastering advanced JavaScript design patterns
No matter how long you've been writing JavaScript code, Effective JavaScript will help deepen your understanding of this powerful language, so you can build more predictable, reliable, and ...
The Good Parts defines a subset of JavaScript that's more reliable, readable, and maintainable than the language as a whole. Author Douglas Crockford, a member of JavaScript 2.0 committee at ECMA, is...
Maglev - A Fast and Reliable Software Network Load Balancer Maglev - A Fast and Reliable Software Network Load Balancer
首先,`reliable rabbitmq c++ client`的标题表明我们要关注的是一个C++编写的RabbitMQ客户端,其设计目标是提供可靠的连接。在分布式系统中,可靠性的关键在于即使在面临网络故障或服务器宕机的情况下,也能确保...
Pragmatic General Multicast (PGM) is a reliable multicast transport protocol that runs over a best effort datagram service, such as IP multicast. PGM obtains scalability via hierarchy, forward error ...
Gallager的Information theory and reliable communication是1976版的,至今仍然是MIT的研究生必读教材。
Applying design patterns to JavaScript code creates more reliable and maintainable code. In this book, you will explore different design patterns and learn where and how to implement them with the ...
Troublesome features have been replaced with better, elegant, more reliable alternatives. This book includes many practical examples and exercises to help you learn in depth. It will not bore you ...
1.Designing Data-Intensive Applications The Big Ideas Behind Reliable Scalable And Maintainable Systems 2017; 2.英文原版,PDF格式; 3.内容简介: If you develop applications that have some kind of server/...