Meta/Facebook browser plugin
Delivers browser events to Facebook pixel
Installation
Once the @seeka-labs
private registry is configured, the below command can be ran to install the plugin.
NPM
npm install --save @seeka-labs/converge-plugin-facebook-pixel@latest
Yarn classic (v1)
yarn add @seeka-labs/converge-plugin-facebook-pixel@latest
Configuration
Add the plugin to your Converge
configuration:
import { FacebookPixelConvergeSdkPlugin } from "@seeka-labs/converge-plugin-facebook-pixel";
const converge = new ConvergeSdk({
...
plugins: [
...
new FacebookPixelConvergeSdkPlugin({ pixelId: "(Facebook pixel ID)" })
],
});