0.0.2 • Published 2 years ago

analytics-plugin-linkedin v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

LinkedIn

This library exports the linkedin plugin for the analytics package & standalone methods for any project to use to make it easier to interact with LinkedIn.

This analytics plugin will load LinkedIn into your application.

Installation

npm install analytics
npm install analytics-plugin-linkedin

How to use

import Analytics from "analytics";
import linkedin from "analytics-plugin-linkedin";

const analytics = Analytics({
  app: "awesome-app",
  plugins: [
    linkedin({
      accountId: "1234", // required
    }),
  ],
});