How to measure the performance and costs (processing and memory) of a frontend?

4

I'm working on a project that uses a lot of JavaScript (ecmascript-6, jQuery), Html5, and CSS would like to have some way to measure performance , consumption of processing

asked by anonymous 26.08.2016 / 02:44

1 answer

1

In Firefox you can use the Firebug extension.

In Chrome, just hit F12 . Still about Chrome, take a look at the tabs:

  • Network: to see things related to the network
  • Timeline: see what type of operation the browser is doing. Ex: running a script (Scripting) or painting the screen (Painting)
  • Profile: also shows CPU usage, in addition to memory usage

As you have many options, I suggest you take a look here: link

    
26.08.2016 / 03:08