├── .circleci └── config.yml ├── .coveralls.yml ├── .depcheckrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── contributing.md ├── entries └── package.json ├── greenkeeper.json ├── images ├── perf-marks-in-action.gif └── perf-marks.png ├── jest.config.js ├── jest.setup.js ├── marks └── package.json ├── package.json ├── profiler └── package.json ├── rollup.config.js ├── src ├── __tests__ │ ├── entries-without-user-timing.ts │ ├── entries.ts │ ├── perf-marks-without-user-timing.ts │ ├── perf-marks.ts │ └── profiler.ts ├── entries.ts ├── entrypoints │ ├── entries.ts │ ├── marks.ts │ ├── profiler.ts │ └── utils.ts ├── index.ts ├── is-nodejs-env.ts ├── is-performance-observable-supported.ts ├── is-user-timing-api-supported.ts ├── marks.ts ├── profiler.ts └── user-timing-api-resolver.ts ├── tsconfig.eslint.json ├── tsconfig.json ├── tsconfig.spec.json ├── utils └── package.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: 20WVMYXmZEB3IDVqcO9Ev9A0IHzoIReKT 2 | -------------------------------------------------------------------------------- /.depcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.depcheckrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .github 2 | .jest 3 | coverage 4 | lib 5 | node_modules 6 | flow-typed 7 | .yarn 8 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v15.8.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/contributing.md -------------------------------------------------------------------------------- /entries/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/entries/package.json -------------------------------------------------------------------------------- /greenkeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/greenkeeper.json -------------------------------------------------------------------------------- /images/perf-marks-in-action.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/images/perf-marks-in-action.gif -------------------------------------------------------------------------------- /images/perf-marks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/images/perf-marks.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/jest.setup.js -------------------------------------------------------------------------------- /marks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/marks/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/package.json -------------------------------------------------------------------------------- /profiler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/profiler/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/__tests__/entries-without-user-timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/__tests__/entries-without-user-timing.ts -------------------------------------------------------------------------------- /src/__tests__/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/__tests__/entries.ts -------------------------------------------------------------------------------- /src/__tests__/perf-marks-without-user-timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/__tests__/perf-marks-without-user-timing.ts -------------------------------------------------------------------------------- /src/__tests__/perf-marks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/__tests__/perf-marks.ts -------------------------------------------------------------------------------- /src/__tests__/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/__tests__/profiler.ts -------------------------------------------------------------------------------- /src/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/entries.ts -------------------------------------------------------------------------------- /src/entrypoints/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/entrypoints/entries.ts -------------------------------------------------------------------------------- /src/entrypoints/marks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/entrypoints/marks.ts -------------------------------------------------------------------------------- /src/entrypoints/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/entrypoints/profiler.ts -------------------------------------------------------------------------------- /src/entrypoints/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/entrypoints/utils.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/is-nodejs-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/is-nodejs-env.ts -------------------------------------------------------------------------------- /src/is-performance-observable-supported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/is-performance-observable-supported.ts -------------------------------------------------------------------------------- /src/is-user-timing-api-supported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/is-user-timing-api-supported.ts -------------------------------------------------------------------------------- /src/marks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/marks.ts -------------------------------------------------------------------------------- /src/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/profiler.ts -------------------------------------------------------------------------------- /src/user-timing-api-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/src/user-timing-api-resolver.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/utils/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/perf-marks/HEAD/yarn.lock --------------------------------------------------------------------------------