@beyonk/svelte-facebook-pixel

<p align="center"> <img width="186" height="90" src="https://user-images.githubusercontent.com/218949/44782765-377e7c80-ab80-11e8-9dd8-fce0e37c235b.png" alt="Beyonk" /> </p>

Usage no npm install needed!

<script type="module">
  import beyonkSvelteFacebookPixel from 'https://cdn.skypack.dev/@beyonk/svelte-facebook-pixel';
</script>

README

Beyonk

Svelte Facebook Pixel Component

js-standard-style CircleCI Svelte v3 Svelte v3

Facebook pixel tracking component for Svelte.

Install

$ npm install --save-dev @beyonk/svelte-facebook-pixel

Usage

<FacebookPixel bind:this={fb} id={123} />

<script>
  import FacebookPixel from '@beyonk/svelte-facebook-pixel'
</script>

You can import FacebookPixel component whenever and wherever you want, the facebook tracking code is only initialised in the first instance.

Tracking

Simply call the track mehtod:

<FacebookPixel bind:this={fb} />

<script>
    import FacebookPixel from '@beyonk/svelte-facebook-pixel'
    import { onMount } from 'svelte
    
    let fb

    onMount(() => {
        fb.track('SomeEvent', { some: 'data' })
    })
</script>

Multiple Pixels on a page

You can have multiple pixels on a page, for instance, if you need a backup pixel, or if you want to send different events to different pixels.

<FacebookPixel bind:this={fb} />

<script>
    import FacebookPixel from '@beyonk/svelte-facebook-pixel'
    import { onMount } from 'svelte
    
    let fb

    onMount(() => {
        fb.track('SomeEvent', { some: 'data' })
    })
</script>

<FacebookPixel ref:fb id={['123', '456']} />

<script>
  import FacebookPixel from '@beyonk/svelte-facebook-pixel'
</script>

By default all pixels are initialised with init(), and events will be sent to all pixels, however, you can send tracking events to indiviual pixels if you would like:

Sending events to all pixels

You can send tracking events to all pixels just as you would with a single pixel:

fb.track('SomeEvent', { some: 'data' })

Sending events to a single pixel

If you have multiple pixels on your page and want to send an event to only one of them, specify the pixel's id as the last parameter:

fb.track('SomeEvent', { some: 'data' }, '456')

Disabling the pixel (for GDPR)

If you'd like to install the pixel disabled, and enable it later after the user has consented to its use, you can do so by setting enabled: false in the pixel configuration:

<FacebookPixel bind:this={fb} enabled={false} />

Now, in your component, you can call the following in order to start the pixel and track the current page.

fb.enable()

Module options

List of possible options in the module:

Option Default Required Description
id null true The unique pixel identifier provided by Facebook.
version v3.1 false Tracking version.
enabled true false Disable the Pixel by default when initialized. Can be enabled later through <component>.enable().

License

MIT License

Thanks

Thanks to William DASILVA for his original Nuxt facebook pixel module which inspired this project.