├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitignore ├── README.md ├── docs ├── notifying.png ├── renders.png ├── report.png └── timing.png ├── examples ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── ExampleApp.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── registerServiceWorker.js └── yarn.lock ├── lib ├── components │ └── measure.js ├── connect.js ├── createNotifier.js ├── index.js └── utils.js ├── package.json ├── rollup.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/README.md -------------------------------------------------------------------------------- /docs/notifying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/docs/notifying.png -------------------------------------------------------------------------------- /docs/renders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/docs/renders.png -------------------------------------------------------------------------------- /docs/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/docs/report.png -------------------------------------------------------------------------------- /docs/timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/docs/timing.png -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/public/favicon.ico -------------------------------------------------------------------------------- /examples/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/public/index.html -------------------------------------------------------------------------------- /examples/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/public/manifest.json -------------------------------------------------------------------------------- /examples/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/App.css -------------------------------------------------------------------------------- /examples/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/App.js -------------------------------------------------------------------------------- /examples/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/App.test.js -------------------------------------------------------------------------------- /examples/src/ExampleApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/ExampleApp.js -------------------------------------------------------------------------------- /examples/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/index.css -------------------------------------------------------------------------------- /examples/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/index.js -------------------------------------------------------------------------------- /examples/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/logo.svg -------------------------------------------------------------------------------- /examples/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/src/registerServiceWorker.js -------------------------------------------------------------------------------- /examples/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/examples/yarn.lock -------------------------------------------------------------------------------- /lib/components/measure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/lib/components/measure.js -------------------------------------------------------------------------------- /lib/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/lib/connect.js -------------------------------------------------------------------------------- /lib/createNotifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/lib/createNotifier.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/rollup.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsul/react-performance/HEAD/yarn.lock --------------------------------------------------------------------------------