Profiling in Chrome Developer Tools
- Open devtools
- Select Profiles
- Select Collect JavaScript CPU Profile
- Click Start
- Do the (typically slow) things you wish to record
- Click Stop
You now got a table of functions, and CPU time they consumed. On the right hand side of the table, you got a link to the js file and its line number of the function that is responsible for this. You can click them to open the files in the Sources tab.
Check out this chapter in CodeSchools awesome Devtools lesson for more on this topic: http://discover-devtools.codeschool.com/chapters/6/
Previous postSending SMS from python via your phone
Next PostAWS rules of thumb notes