├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.adoc ├── LICENSE.md ├── NOTICE.md ├── README.md ├── browser ├── logger.js └── logger.min.js ├── example ├── README.md ├── home.html ├── loghook.js └── server.js ├── index.js ├── lib └── index.js ├── package.json └── test ├── README.md ├── fixtures ├── app.js ├── default-callback │ └── app-no-log-hook.js ├── hook-file-error │ ├── app-require-error-log.js │ └── log-error-hook.js ├── hook-file │ ├── app-require-log.js │ └── log-hook.js ├── invalid-hook │ └── app-require-invalid-log.js └── templates │ ├── allfeatures.html │ ├── loglevels.html │ └── sampling.html ├── index-error-no-hook-file.js ├── index-hook-file.js ├── index-invalid-hook-file.js ├── index-no-hook-file.js └── index-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # ChangeLog 2 | 3 | ## v1.0.0 4 | * Initial Version -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/README.md -------------------------------------------------------------------------------- /browser/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/browser/logger.js -------------------------------------------------------------------------------- /browser/logger.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/browser/logger.min.js -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/example/README.md -------------------------------------------------------------------------------- /example/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/example/home.html -------------------------------------------------------------------------------- /example/loghook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/example/loghook.js -------------------------------------------------------------------------------- /example/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/example/server.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/package.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/README.md -------------------------------------------------------------------------------- /test/fixtures/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/app.js -------------------------------------------------------------------------------- /test/fixtures/default-callback/app-no-log-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/default-callback/app-no-log-hook.js -------------------------------------------------------------------------------- /test/fixtures/hook-file-error/app-require-error-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/hook-file-error/app-require-error-log.js -------------------------------------------------------------------------------- /test/fixtures/hook-file-error/log-error-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/hook-file-error/log-error-hook.js -------------------------------------------------------------------------------- /test/fixtures/hook-file/app-require-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/hook-file/app-require-log.js -------------------------------------------------------------------------------- /test/fixtures/hook-file/log-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/hook-file/log-hook.js -------------------------------------------------------------------------------- /test/fixtures/invalid-hook/app-require-invalid-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/invalid-hook/app-require-invalid-log.js -------------------------------------------------------------------------------- /test/fixtures/templates/allfeatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/templates/allfeatures.html -------------------------------------------------------------------------------- /test/fixtures/templates/loglevels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/templates/loglevels.html -------------------------------------------------------------------------------- /test/fixtures/templates/sampling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/fixtures/templates/sampling.html -------------------------------------------------------------------------------- /test/index-error-no-hook-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/index-error-no-hook-file.js -------------------------------------------------------------------------------- /test/index-hook-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/index-hook-file.js -------------------------------------------------------------------------------- /test/index-invalid-hook-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/index-invalid-hook-file.js -------------------------------------------------------------------------------- /test/index-no-hook-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/index-no-hook-file.js -------------------------------------------------------------------------------- /test/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/browser-telemetry/HEAD/test/index-test.js --------------------------------------------------------------------------------