跨平台、跨浏览器 Javascript 性能分析
除了我在服务器端的最近的问题在分析 PHP 应用程序时,应用程序可以包含大量 javascript,内容全部采用 AJAXy。
这就引出了跨平台、跨浏览器的 javascript 分析工具的问题 - 它们是否存在,人们使用哪些工具,以及每种工具有什么好处?
非常感谢。
In addition to my recent question on server-side profiling of a PHP app, an app can have a ton of javascript, being all AJAXy in content.
This begs the question of cross-platform, cross-browser javascript profiling tools - do they exist, what ones do people use, and what benefits are there for each one?
Much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://testswarm.com/
http://testswarm.com/
你可以在 firebug 中进行分析,但不知道 chrome 的控制台
you may do profiling in firebug, dont know about chrome's console though
查看 HTML 5 样板。
它包括一个也适用于 IE6/7 的 Javascript 分析器。观看视频以进一步了解如何执行此操作。其中还有许多其他与最新网络标准/实践相关的精彩内容。
Check out HTML 5 Boilerplate.
It includes a Javascript profiler that works for IE6/7 as well. Watch the video on further explanation on how to do this. There are lots of other neat stuff in there too related to latest web standards/practices.
如果您的代码抽象得很好,使用了良好的跨浏览器框架和库,并尽可能避免使用本机 JavaScript,那么您就不必担心是否有工具可以帮助您跨所有不同的浏览器进行测试。
If your code is abstracted well, using good cross-browser frameworks and libraries, and avoid using native JavaScript wherever possibile, you should not worry about having tools to help you test across all different browsers.