npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

next-facebook-tracking

v0.1.12

Published

A simple package to help you integrate Facebook Pixel and Conversions API with Next.js

Downloads

148

Readme

next-facebook-tracking

next-facebook-tracking is a simple and efficient library for integrating Facebook Pixel and Conversions API tracking into your Next.js application. It provides easy-to-use components and hooks to handle various Facebook Pixel events.

Installation

Install the package via npm or yarn:

npm i --save next-facebook-tracking

Usage

Setup

First, create a Facebook tracking instance:

// facebook.ts
import {FacebookTracking} from 'next-facebook-tracking'

export const facebook = new FacebookTracking({
  // pixelId: process.env.NEXT_PUBLIC_FACEBOOK_PIXEL,
  // accessToken: process.env.FACEBOOK_CONVERSIONS_API_TOKEN,
  debug: true,
})

Add the Provider to Your Layout

Wrap your application's layout with the FacebookTrackingProvider in layout.tsx:

// layout.tsx
import {
  FacebookTrackingProvider,
  FacebookPageView,
} from 'next-facebook-tracking/components'
import {facebook} from './facebook'

export default function RootLayout({children}) {
  return (
    <html lang="en">
      <body>
        <FacebookTrackingProvider client={facebook}>
          {children}
          <FacebookPageView
            action={async event => {
              'use server'
              facebook.track(event)
            }}
          />
        </FacebookTrackingProvider>
      </body>
    </html>
  )
}

Create a Custom Script

FacebookTrackingProvider will load try to load Facebook's Pixel script from /scripts/pixel.js after the first render so you need to create this file:

// public/scripts/pixel.js
const PIXEL_ID = document.currentScript.getAttribute('data-pixel-id')

function initializeFacebookPixel(f, b, e, v, n, t, s) {
  if (f.fbq) return
  n = f.fbq = function () {
    n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments)
  }
  if (!f._fbq) f._fbq = n
  n.push = n
  n.loaded = !0
  n.version = '2.0'
  n.queue = []
  t = b.createElement(e)
  t.async = !0
  t.src = v
  s = b.getElementsByTagName(e)[0]
  s.parentNode.insertBefore(t, s)
}

initializeFacebookPixel(
  window,
  document,
  'script',
  'https://connect.facebook.net/en_US/fbevents.js',
)

window.fbq('init', PIXEL_ID)

Track Events on Page Load and Interactions

Use the facebook instance to track events on page load and interactions in page.tsx:

// page.tsx
import {facebook} from './facebook'
import {
  FacebookTrackOnClick,
  FacebookTrackOnRender,
} from 'next-facebook-tracking/components'

export default async function Home() {
  // This will run on the server
  await facebook.track({
    event_name: 'PageView',
  })

  return (
    <>
      <FacebookTrackOnClick
        action={async event => {
          'use server'
          facebook.track(event)
        }}
        event={{
          event_name: 'AddToCart',
          custom_data: {
            value: 10.1,
            currency: 'USD',
            num_items: 1,
          },
        }}
      >
        <button>Track something</button>
      </FacebookTrackOnClick>

      <FacebookTrackOnRender
        event={{
          event_name: 'InitiateCheckout',
          custom_data: {
            value: 30.1,
            currency: 'USD',
            num_items: 3,
          },
        }}
      />
    </>
  )
}

FacebookTracking Class

Configuration

The FacebookTracking class is used to manage Facebook Pixel and Conversions API tracking.

Constructor

new FacebookTracking(config: FacebookTrackingConfig)

FacebookTrackingConfig Options:

  • pixelId (string): The Facebook pixel ID. Defaults to NEXT_PUBLIC_FACEBOOK_PIXEL env var.
  • accessToken (string): The access token for Facebook Conversions API (optional). Defaults to FACEBOOK_CONVERSIONS_API_TOKEN env var.
  • testCode (string): The test code for Facebook Conversions API (optional). Defaults to FACEBOOK_TEST_EVENT_CODE env var.
  • debug (boolean): Enable or disable debug mode. Defaults to false.

Methods

track

Tracks custom events.

async track<T extends Facebook.Event.EventName>(event: Facebook.Event.EventData<T>)

Custom Hook

useFacebookPixel

Provides access to the FacebookPixel context.

const context = useFacebookPixel()

Components

FacebookTrackingProvider

A context provider for the Facebook tracking instance.

Props:

  • client (FacebookTracking): The Facebook tracking instance.

FacebookPageView

Tracks page views.

FacebookTrackOnClick

Tracks events when a component is clicked.

Props:

  • action (function): The function to execute on click.
  • event (object): The event details to track.

FacebookTrackOnRender

Tracks events when a component is rendered.

Props:

  • event (object): The event details to track.

License

MIT License


Feel free to customize this README file further to match any additional features or details specific to your package.