Performance profiler based on nodetime
npm install lookLook is a perfomance profiler for node.js applications based on nodetime.
Look don't send any data outside your server.
npm install look
The following call should be placed before any other require statement in your application, e.g. at the first line of your main module
``js`
require('look').start();
Look will be started as a web server on port 5959, you can access it by pointing your browser to: http://[yourhost]:5959
- port Listening port, defaulting to 5959host
- Listening host, defaulting to 0.0.0.0
`js``
require('look').profile(3000, '127.0.0.1');