5. Linkedin App 的故事 2011 版
source: http://venturebeat.com/2011/08/16/linkedin-
node/
"Exclusive: How LinkedIn
used Node.js and HTML5 to
build a better, faster app"
6. Linkedin App 的故事 2013 版
source: http://venturebeat.com/2013/04/17/linkedin-
mobile-web-breakup/
"Why LinkedIn dumped
HTML5 & went native for
its mobile apps"
21. 效能提升方案
大量運算時 - Webworker
var worker = new Worker('my_file.js');
worker.addEventListener('message', function (e)
{
// do something with the message from the
// worker
});
// pass some data into the worker
worker.postMessage({
foo: bar
});
REF: http://code.flickr.net/2012/06/06/web-workers-and-yui/
27. 使用的框架
我們使用 YUI
也用 LESS
LESS extends CSS with dynamic behavior such as variables,
mixins, operations and functions.
http://lesscss.org/