Javascript Code Analysis with Esprima

preview_player
Показать описание
As applications get more complex, the underlying systems will get harder and harder to maintain and manage. JavaScript's tools aren't keeping pace, and that's a problem.

Enter Esprima.

Ariya Hidayat spoke to the San Francisco HTML5 Usergroup about this highly performant, extensible, JavaScript parser with features designed to improve code inspection, static and dynamic analysis, and source transformation. Working on a big JavaScript project that's getting hard to manage? Esprima might be a solution.
Рекомендации по теме
Комментарии
Автор

Excellent! I enjoyed this very much. Thank you, Ariya.

catwhisperer
Автор

Sometimes the slide is ahead from the talk.

zakiakhmad
Автор

Is there any tool, that translate javascript to asynchronous javascript ?
somthing like a "thread" ( but not a webworker ) for example :
function f(){
while( anyVar ){
// do somthing
}
}
f.run() // 'back ground running base setInterval'

avirubinstein