Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidWells committed Feb 24, 2024
2 parents 7859858 + 03aef6d commit 9547057
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions examples/vanilla-html/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
debug: true,
version: 100,
plugins: [
analyticsGa({
trackingId: 'UA-126647663-3'
analyticsGa.default({
measurementIds: 'UA-126647663-3'
})
// ... add other plugins
]
Expand Down
30 changes: 15 additions & 15 deletions packages/analytics-plugin-crazy-egg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ description: Using the CrazyEgg plugin

Integration with [crazy egg](https://www.crazyegg.com/) for [analytics](https://www.npmjs.com/package/analytics)

Crazy egg adds heat mapping, A/B testing, and session recording functionality to websites and applications. This allows developers, marketers, and product owners to see what is working and what areas of an application might need improvements.
Crazy Egg adds heat mapping, A/B testing, and session recording functionality to websites and applications. This allows developers, marketers, and product owners to see what is working and what areas of an application might need improvements.

This analytics plugin will load crazy egg into your application.
This analytics plugin will load Crazy Egg into your application.

[View the docs](https://getanalytics.io/plugins/crazyegg/).

Expand Down Expand Up @@ -41,18 +41,18 @@ npm install @analytics/crazy-egg

## How to use

The `@analytics/crazy-egg` package works in [the browser](#browser-usage). To use, install the package, include in your project and initialize the plugin with [analytics](https://www.npmjs.com/package/analytics).
The `@analytics/crazy-egg` package works in [the browser](#browser-usage). To use, install the package, include it in your project, and initialize the plugin with [analytics](https://www.npmjs.com/package/analytics).

Below is an example of how to use the browser plugin.

```js
import Analytics from 'analytics'
import exports from '@analytics/crazy-egg'
import crazyEgg from '@analytics/crazy-egg'

const analytics = Analytics({
app: 'awesome-app',
plugins: [
// This will load crazy egg on to the page
// This will load Crazy Egg onto the page
crazyEgg({
accountNumber: '1234578'
})
Expand All @@ -69,18 +69,18 @@ The `@analytics/crazy-egg` package works in [the browser](#browser-usage)

## Browser usage

See below from browser API
See below from the browser API

### Browser API

```js
import Analytics from 'analytics'
import exports from '@analytics/crazy-egg'
import crazyEgg from '@analytics/crazy-egg'

const analytics = Analytics({
app: 'awesome-app',
plugins: [
// This will load crazy egg on to the page
// This will load Crazy Egg onto the page
crazyEgg({
accountNumber: '1234578'
})
Expand Down Expand Up @@ -117,7 +117,7 @@ Below are additional implementation examples.
var Analytics = _analytics.init({
app: 'my-app-name',
plugins: [
// This will load crazy egg on to the page
// This will load Crazy Egg onto the page
crazyEgg({
accountNumber: '1234578'
})
Expand Down Expand Up @@ -151,17 +151,17 @@ Below are additional implementation examples.
</script>
<script type="module">
import analytics from 'https://unpkg.com/analytics/lib/analytics.browser.es.js?module'
import analyticsCrazyEgg from 'https://unpkg.com/@analytics/crazy-egg/lib/analytics-plugin-crazy-egg.browser.es.js?module'
import crazyEgg from 'https://unpkg.com/@analytics/crazy-egg/lib/analytics-plugin-crazy-egg.browser.es.js?module'
/* Initialize analytics */
const Analytics = analytics({
app: 'analytics-html-demo',
debug: true,
plugins: [
// This will load crazy egg on to the page
// This will load Crazy Egg onto the page
crazyEgg({
accountNumber: '1234578'
})
// ... add any other third party analytics plugins
// ... add any other third-party analytics plugins
]
})
</script>
Expand All @@ -185,18 +185,18 @@ Initialize analytics with the crazy-egg plugin and the crazy-egg heat mapping sc

```js
import Analytics from 'analytics'
import crazyEggPlugin from '@analytics/crazy-egg'
import crazyEgg from '@analytics/crazy-egg'

const analytics = Analytics({
app: 'awesome-app',
plugins: [
crazyEggPlugin({
crazyEgg({
accountNumber: '12345678'
}),
]
})

// Crazy egg now loaded!
// Crazy Egg is now loaded!
```

See the [full list of analytics provider plugins](https://getanalytics.io/plugins/) in the main repo.

0 comments on commit 9547057

Please sign in to comment.