├── README.md ├── bin └── chrome2calltree.js ├── index.js ├── main └── HomePage ├── package.json └── sample ├── chromeprofiler.png ├── index.html ├── sample.cpuprofile ├── sample.log └── script.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/README.md -------------------------------------------------------------------------------- /bin/chrome2calltree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/bin/chrome2calltree.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/index.js -------------------------------------------------------------------------------- /main/HomePage: -------------------------------------------------------------------------------- 1 | main.HomePage 2 | 3 | 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/package.json -------------------------------------------------------------------------------- /sample/chromeprofiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/sample/chromeprofiler.png -------------------------------------------------------------------------------- /sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/sample/index.html -------------------------------------------------------------------------------- /sample/sample.cpuprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/sample/sample.cpuprofile -------------------------------------------------------------------------------- /sample/sample.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/sample/sample.log -------------------------------------------------------------------------------- /sample/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlfwong/chrome2calltree/HEAD/sample/script.js --------------------------------------------------------------------------------