├── .github └── screenshot.png ├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json └── yarn.lock /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remy/server-timings/HEAD/.github/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remy/server-timings/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remy/server-timings/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remy/server-timings/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remy/server-timings/HEAD/yarn.lock --------------------------------------------------------------------------------