Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@snowplow/browser-plugin-performance-timing

Package Overview
Dependencies
Maintainers
3
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@snowplow/browser-plugin-performance-timing - npm Package Compare versions

Comparing version 3.5.0 to 3.6.0

2

dist/index.module.js
/*!
* Attaches Performance Timing data to Snowplow events v3.5.0 (http://bit.ly/sp-js)
* Attaches Performance Timing data to Snowplow events v3.6.0 (http://bit.ly/sp-js)
* Copyright 2022 Snowplow Analytics Ltd, 2010 Anthon Pang

@@ -4,0 +4,0 @@ * Licensed under BSD-3-Clause

/*!
* Attaches Performance Timing data to Snowplow events v3.5.0 (http://bit.ly/sp-js)
* Attaches Performance Timing data to Snowplow events v3.6.0 (http://bit.ly/sp-js)
* Copyright 2022 Snowplow Analytics Ltd, 2010 Anthon Pang

@@ -4,0 +4,0 @@ * Licensed under BSD-3-Clause

/*!
* Attaches Performance Timing data to Snowplow events v3.5.0 (http://bit.ly/sp-js)
* Attaches Performance Timing data to Snowplow events v3.6.0 (http://bit.ly/sp-js)
* Copyright 2022 Snowplow Analytics Ltd, 2010 Anthon Pang

@@ -4,0 +4,0 @@ * Licensed under BSD-3-Clause

{
"name": "@snowplow/browser-plugin-performance-timing",
"version": "3.5.0",
"version": "3.6.0",
"description": "Attaches Performance Timing data to Snowplow events",

@@ -21,4 +21,4 @@ "homepage": "http://bit.ly/sp-js",

"dependencies": {
"@snowplow/browser-tracker-core": "3.5.0",
"@snowplow/tracker-core": "3.5.0",
"@snowplow/browser-tracker-core": "3.6.0",
"@snowplow/tracker-core": "3.6.0",
"tslib": "^2.3.1"

@@ -48,3 +48,3 @@ },

"peerDependencies": {
"@snowplow/browser-tracker": "~3.5.0"
"@snowplow/browser-tracker": "~3.6.0"
},

@@ -55,3 +55,3 @@ "scripts": {

},
"readme": "# Snowplow Performance Timing Tracking\n\n[![npm version][npm-image]][npm-url]\n[![License][license-image]](LICENSE)\n\nBrowser Plugin to be used with `@snowplow/browser-tracker`.\n\nAdds Performance Timing contexts to your Snowplow tracking.\n\n## Maintainer quick start\n\nPart of the Snowplow JavaScript Tracker monorepo. \nBuild with [Node.js](https://nodejs.org/en/) (12 LTS or 14 LTS) and [Rush](https://rushjs.io/).\n\n### Setup repository\n\n```bash\nnpm install -g @microsoft/rush \ngit clone https://github.com/snowplow/snowplow-javascript-tracker.git\nrush update\n```\n\n## Package Installation\n\nWith npm:\n\n```bash\nnpm install @snowplow/browser-plugin-performance-timing\n```\n\n## Usage\n\nInitialize your tracker with the PerformanceTimingPlugin:\n\n```js\nimport { newTracker } from '@snowplow/browser-tracker';\nimport { PerformanceTimingPlugin } from '@snowplow/browser-plugin-performance-timing';\n\nnewTracker('sp1', '{{collector}}', { plugins: [ PerformanceTimingPlugin() ] }); \n```\n\n## Copyright and license\n\nLicensed and distributed under the [BSD 3-Clause License](LICENSE) ([An OSI Approved License][osi]).\n\nCopyright (c) 2022 Snowplow Analytics Ltd, 2010 Anthon Pang.\n\nAll rights reserved.\n\n[npm-url]: https://www.npmjs.com/package/@snowplow/browser-plugin-performance-timing\n[npm-image]: https://img.shields.io/npm/v/@snowplow/browser-plugin-performance-timing\n[docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-tracker/\n[osi]: https://opensource.org/licenses/BSD-3-Clause\n[license-image]: https://img.shields.io/npm/l/@snowplow/browser-plugin-performance-timing\n"
"readme": "# Snowplow Performance Timing Tracking\n\n[![npm version][npm-image]][npm-url]\n[![License][license-image]](LICENSE)\n\nBrowser Plugin to be used with `@snowplow/browser-tracker`.\n\nAdds Performance Timing contexts to your Snowplow tracking.\n\n## Maintainer quick start\n\nPart of the Snowplow JavaScript Tracker monorepo. \nBuild with [Node.js](https://nodejs.org/en/) (14 or 16) and [Rush](https://rushjs.io/).\n\n### Setup repository\n\n```bash\nnpm install -g @microsoft/rush \ngit clone https://github.com/snowplow/snowplow-javascript-tracker.git\nrush update\n```\n\n## Package Installation\n\nWith npm:\n\n```bash\nnpm install @snowplow/browser-plugin-performance-timing\n```\n\n## Usage\n\nInitialize your tracker with the PerformanceTimingPlugin:\n\n```js\nimport { newTracker } from '@snowplow/browser-tracker';\nimport { PerformanceTimingPlugin } from '@snowplow/browser-plugin-performance-timing';\n\nnewTracker('sp1', '{{collector}}', { plugins: [ PerformanceTimingPlugin() ] }); \n```\n\n## Copyright and license\n\nLicensed and distributed under the [BSD 3-Clause License](LICENSE) ([An OSI Approved License][osi]).\n\nCopyright (c) 2022 Snowplow Analytics Ltd, 2010 Anthon Pang.\n\nAll rights reserved.\n\n[npm-url]: https://www.npmjs.com/package/@snowplow/browser-plugin-performance-timing\n[npm-image]: https://img.shields.io/npm/v/@snowplow/browser-plugin-performance-timing\n[docs]: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-tracker/\n[osi]: https://opensource.org/licenses/BSD-3-Clause\n[license-image]: https://img.shields.io/npm/l/@snowplow/browser-plugin-performance-timing\n"
}

@@ -13,3 +13,3 @@ # Snowplow Performance Timing Tracking

Part of the Snowplow JavaScript Tracker monorepo.
Build with [Node.js](https://nodejs.org/en/) (12 LTS or 14 LTS) and [Rush](https://rushjs.io/).
Build with [Node.js](https://nodejs.org/en/) (14 or 16) and [Rush](https://rushjs.io/).

@@ -16,0 +16,0 @@ ### Setup repository

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc