├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── examples └── dump.js ├── index.js ├── package.json ├── test ├── cluster.mocha.js ├── file.mocha.js ├── fixtures │ ├── childFork.js │ ├── log.txt │ ├── tmp │ │ └── .gitignore │ └── worker.js ├── getActiveHandlessUnit.mocha.js ├── getActiveRequestsUnit.mocha.js ├── http.mocha.js ├── nexttick.mocha.js ├── timers.mocha.js ├── utils.js └── utils.mocha.js └── utils.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | .nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | examples 3 | test 4 | coverage 5 | .nyc_output 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/README.md -------------------------------------------------------------------------------- /examples/dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/examples/dump.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/package.json -------------------------------------------------------------------------------- /test/cluster.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/cluster.mocha.js -------------------------------------------------------------------------------- /test/file.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/file.mocha.js -------------------------------------------------------------------------------- /test/fixtures/childFork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/fixtures/childFork.js -------------------------------------------------------------------------------- /test/fixtures/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/fixtures/log.txt -------------------------------------------------------------------------------- /test/fixtures/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/fixtures/worker.js -------------------------------------------------------------------------------- /test/getActiveHandlessUnit.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/getActiveHandlessUnit.mocha.js -------------------------------------------------------------------------------- /test/getActiveRequestsUnit.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/getActiveRequestsUnit.mocha.js -------------------------------------------------------------------------------- /test/http.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/http.mocha.js -------------------------------------------------------------------------------- /test/nexttick.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/nexttick.mocha.js -------------------------------------------------------------------------------- /test/timers.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/timers.mocha.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/utils.js -------------------------------------------------------------------------------- /test/utils.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/test/utils.mocha.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keymetrics/event-loop-inspector/HEAD/utils.js --------------------------------------------------------------------------------