次の 2 つの TodoMVC の例のレンダリング速度を比較しています。
バックボーン - http://addyosmani.github.com/todomvc/architecture-examples/backbone/
-> (on 1st loading) 14 requests ❘ 62.19KB transferred ❘ 2.01s (onload: 2.10s, DOMContentLoaded: 2.10s) -> (on cache loading) 14 requests ❘ 0B transferred ❘ 176ms (onload: 177ms, DOMContentLoaded: 175ms)
バックボーン + RequireJS - http://addyosmani.github.com/todomvc/dependency-examples/backbone_require/
-> (on 1st loading) 19 requests ❘ 73.95KB transferred ❘ 2.57s (onload: 2.57s, DOMContentLoaded: 1.14s) -> (on cache loading) 19 requests ❘ 0B transferred ❘ 224ms (onload: 244ms, DOMContentLoaded: 87ms)
RequireJS を使用するとできるだけ早く起動するように解釈$(document).ready()
できますが、ページのレンダリングに必要な全体的な時間は実際には長くなりますか?