{"id":23508626,"url":"https://github.com/fliskdata/analyze-tracking","last_synced_at":"2026-01-03T05:22:11.615Z","repository":{"id":253802706,"uuid":"843928255","full_name":"fliskdata/analyze-tracking","owner":"fliskdata","description":"Automatically document your analytics setup by analyzing tracking code and generating data schemas 🚀","archived":false,"fork":false,"pushed_at":"2024-10-06T14:35:37.000Z","size":94,"stargazers_count":22,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T21:48:43.032Z","etag":null,"topics":["amplitude","analytics","googleanalytics","heap","javascript","mixpanel","mparticle","pendo","posthog","rudderstack","segment","snowplow","typescript"],"latest_commit_sha":null,"homepage":"https://www.flisk.ai","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fliskdata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-17T21:00:26.000Z","updated_at":"2025-03-17T17:42:15.000Z","dependencies_parsed_at":"2024-12-04T11:16:32.430Z","dependency_job_id":null,"html_url":"https://github.com/fliskdata/analyze-tracking","commit_stats":null,"previous_names":["fliskdata/analyze-tracking"],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fliskdata%2Fanalyze-tracking","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fliskdata%2Fanalyze-tracking/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fliskdata%2Fanalyze-tracking/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fliskdata%2Fanalyze-tracking/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fliskdata","download_url":"https://codeload.github.com/fliskdata/analyze-tracking/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249250939,"owners_count":21237965,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["amplitude","analytics","googleanalytics","heap","javascript","mixpanel","mparticle","pendo","posthog","rudderstack","segment","snowplow","typescript"],"created_at":"2024-12-25T11:24:31.546Z","updated_at":"2026-01-03T05:22:11.609Z","avatar_url":"https://github.com/fliskdata.png","language":"JavaScript","readme":"# @flisk/analyze-tracking\n\nAutomatically document your analytics setup by analyzing tracking code and generating data schemas from tools like Segment, Amplitude, Mixpanel, and more 🚀\n\n[![NPM version](https://img.shields.io/npm/v/@flisk/analyze-tracking.svg)](https://www.npmjs.com/package/@flisk/analyze-tracking) [![Tests](https://github.com/fliskdata/analyze-tracking/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/fliskdata/analyze-tracking/actions/workflows/tests.yml)\n\n\n## Why Use @flisk/analyze-tracking?\n📊 **Understand Your Tracking** – Effortlessly analyze your codebase for `track` calls so you can see all your analytics events, properties, and triggers in one place. No more guessing what's being tracked!\n\n🔍 **Auto-Document Events** – Generates a complete YAML schema that captures all events and properties, including where they're implemented in your codebase.\n\n🕵️‍♂️ **Track Changes Over Time** – Easily spot unintended changes or ensure your analytics setup remains consistent across updates.\n\n📚 **Populate Data Catalogs** – Automatically generate structured documentation that can help feed into your data catalog, making it easier for everyone to understand your events.\n\n\n## Quick Start\n\nRun without installation! Just use:\n\n```sh\nnpx @flisk/analyze-tracking /path/to/project [options]\n```\n\n### Key Options\n- `-g, --generateDescription`: Generate descriptions of fields (default: `false`)\n- `-p, --provider \u003cprovider\u003e`: Specify a provider (options: `openai`, `gemini`)\n- `-m, --model \u003cmodel\u003e`: Specify a model (ex: `gpt-4.1-nano`, `gpt-4o-mini`, `gemini-2.0-flash-lite-001`)\n- `-o, --output \u003coutput_file\u003e`: Name of the output file (default: `tracking-schema.yaml`)\n- `-c, --customFunction \u003cfunction_signature\u003e`: Specify the signature of your custom tracking function (see [instructions here](#custom-functions))\n- `--format \u003cformat\u003e`: Output format, either `yaml` (default) or `json`. If an invalid value is provided, the CLI will exit with an error.\n- `--stdout`: Print the output to the terminal instead of writing to a file (works with both YAML and JSON)\n\n🔑\u0026nbsp; **Important:** If you are using `generateDescription`, you must set the appropriate credentials for the LLM provider you are using as an environment variable. OpenAI uses `OPENAI_API_KEY` and Google Vertex AI uses `GOOGLE_APPLICATION_CREDENTIALS`.\n\n\n### Custom Functions\n\nIf you have your own in-house tracker or a wrapper function that calls other tracking libraries, you can specify the function signature with the `-c` or `--customFunction` option.\n\n#### Standard Custom Function Format\n\nYour function signature should be in the following format:\n```js\nyourCustomTrackFunctionName(EVENT_NAME, PROPERTIES, customFieldOne, customFieldTwo)\n```\n\n- `EVENT_NAME` is the name of the event you are tracking. It should be a string or a pointer to a string. This is required.\n- `PROPERTIES` is an object of properties for that event. It should be an object / dictionary. This is optional.\n- Any additional parameters are other fields you are tracking. They can be of any type. The names you provide for these parameters will be used as the property names in the output.\n\n\nFor example, if your function has a userId parameter at the beginning, followed by the event name and properties, you would pass in the following:\n\n```js\nyourCustomTrackFunctionName(userId, EVENT_NAME, PROPERTIES)\n```\n\nIf your function follows the standard format `yourCustomTrackFunctionName(EVENT_NAME, PROPERTIES)`, you can simply pass in `yourCustomTrackFunctionName` to `--customFunction` as a shorthand.\n\n#### Method-Name-as-Event Format\n\nFor tracking patterns where the method name itself is the event name (e.g., `yourClass.yourEventName({...})`), use the special `EVENT_NAME` placeholder in the method position:\n\n```js\nyourClass.EVENT_NAME(PROPERTIES)\n```\n\nThis pattern tells the analyzer that:\n- `yourClass` is the object name to match\n- The method name after the dot (e.g., `viewItemList`, `addToCart`) is the event name\n- `PROPERTIES` is the properties object (defaults to the first argument if not specified)\n\n**Example:**\n```typescript\n// Code in your project:\nyourClass.viewItemList({ items: [...] });\nyourClass.addToCart({ item: {...}, value: 100 });\nyourClass.purchase({ userId: '123', value: 100 });\n\n// Command:\nnpx @flisk/analyze-tracking /path/to/project --customFunction \"yourClass.EVENT_NAME(PROPERTIES)\"\n```\n\nThis will detect:\n- Event: `viewItemList` with properties from the first argument\n- Event: `addToCart` with properties from the first argument\n- Event: `purchase` with properties from the first argument\n\n_**Note:** This pattern is currently only supported for JavaScript and TypeScript code._\n\n#### Multiple Custom Functions\n\nYou can also pass in multiple custom function signatures by passing in the `--customFunction` option multiple times or by passing in a space-separated list of function signatures.\n\n```sh\nnpx @flisk/analyze-tracking /path/to/project --customFunction \"yourFunc1\" --customFunction \"yourFunc2(userId, EVENT_NAME, PROPERTIES)\"\nnpx @flisk/analyze-tracking /path/to/project -c \"yourFunc1\" \"yourFunc2(userId, EVENT_NAME, PROPERTIES)\"\nnpx @flisk/analyze-tracking /path/to/project -c \"yourClass.EVENT_NAME(PROPERTIES)\" \"customTrack(EVENT_NAME, PROPERTIES)\"\n```\n\n\n## What's Generated?\nA clear YAML schema that shows where your events are tracked, their properties, and more.\nHere's an example:\n\n```yaml\nversion: 1\nsource:\n  repository: \u003crepository_url\u003e\n  commit: \u003ccommit_sha\u003e\n  timestamp: \u003ccommit_timestamp\u003e\nevents:\n  \u003cevent_name\u003e:\n    description: \u003cai_generated_description\u003e\n    implementations:\n      - description: \u003cai_generated_description\u003e\n        path: \u003cpath_to_file\u003e\n        line: \u003cline_number\u003e\n        function: \u003cfunction_name\u003e\n        destination: \u003cplatform_name\u003e\n    properties:\n      \u003cproperty_name\u003e:\n        description: \u003cai_generated_description\u003e\n        type: \u003cproperty_type\u003e\n```\n\nUse this to understand where your events live in the code and how they're being tracked.\n\nYour LLM of choice is used for generating descriptions of events, properties, and implementations.\n\nSee [schema.json](schema.json) for a JSON Schema of the output.\n\n\n## Supported tracking libraries \u0026 languages\n\n| Library | JavaScript/TypeScript | Python | Ruby | Go | Swift |\n|---------|:---------------------:|:------:|:----:|:--:|:--:|\n| Google Analytics   | ✅ | ❌ | ❌ | ❌ | ✅ |\n| Google Tag Manager | ✅ | ❌ | ❌ | ❌ | ✅ |\n| Segment            | ✅ | ✅ | ✅ | ✅ | ✅ |\n| Mixpanel           | ✅ | ✅ | ✅ | ✅ | ✅ |\n| Amplitude          | ✅ | ✅ | ❌ | ✅ | ✅ |\n| Rudderstack        | ✅ | ✅ | ✳️ | ✳️ | ✅ |\n| mParticle          | ✅ | ❌ | ❌ | ❌ | ✅ |\n| PostHog            | ✅ | ✅ | ✅ | ✅ | ✅ |\n| Pendo              | ✅ | ❌ | ❌ | ❌ | ✅ |\n| Heap               | ✅ | ❌ | ❌ | ❌ | ✅ |\n| Snowplow           | ✅ | ✅ | ✅ | ✅ | ❌ |\n| Datadog RUM        | ✅ | ❌ | ❌ | ❌ | ❌ |\n| Custom Function    | ✅ | ✅ | ✅ | ✅ | ✅ |\n\n✳️ Rudderstack's SDKs often use the same format as Segment, so Rudderstack events may be detected as Segment events.\n\n\n## SDKs for supported libraries\n\n\u003cdetails\u003e\n  \u003csummary\u003eGoogle Analytics\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  gtag('event', '\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n  ```\n\n  **Swift**\n  ```swift\n  Analytics.logEvent(\"\u003cevent_name\u003e\", parameters: [\n    \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"\n  ])\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eGoogle Tag Manager\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  dataLayer.push({\n    event: '\u003cevent_name\u003e',\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n\n  // Or via window\n  window.dataLayer.push({\n    event: '\u003cevent_name\u003e',\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n  ```\n\n  **Swift**\n  ```swift\n  dataLayer.push([\"event\": \"\u003cevent_name\u003e\", \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"])\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eSegment\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  analytics.track('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n  ```\n\n  **Python**\n  ```python\n  analytics.track('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  })\n  ```\n\n  **Ruby**\n  ```ruby\n  Analytics.track(\n    event: '\u003cevent_name\u003e',\n    properties: {\n      '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n    }\n  )\n  ```\n\n  **Go**\n  ```go\n  client.Enqueue(analytics.Track{\n    UserId: \"user-id\",\n    Event:  \"\u003cevent_name\u003e\",\n    Properties: analytics.NewProperties().\n      Set(\"\u003cproperty_name\u003e\", \"\u003cproperty_value\u003e\"),\n  })\n  ```\n\n  **Swift**\n  ```swift\n  analytics.track(name: \"\u003cevent_name\u003e\", properties: TrackProperties(\"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"))\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eMixpanel\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  mixpanel.track('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n  ```\n\n  **Python**\n  ```python\n  mixpanel.track('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  })\n  ```\n\n  **Ruby**\n  ```ruby\n  tracker.track('\u003cdistinct_id\u003e', '\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  })\n  ```\n\n  **Go**\n  ```go\n  ctx := context.Background()\n  mp := mixpanel.NewApiClient(\"YOUR_PROJECT_TOKEN\")\n  mp.Track(ctx, []*mixpanel.Event{\n    mp.NewEvent(\"\u003cevent_name\u003e\", \"\", map[string]any{}{\n      \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\",\n    }),\n  })\n  ```\n\n  **Swift**\n  ```swift\n  Mixpanel.mainInstance().track(event: \"\u003cevent_name\u003e\", properties: [\n    \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"\n  ])\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eAmplitude\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  amplitude.track('\u003cevent_name\u003e', {\n    \u003cevent_parameters\u003e\n  });\n  ```\n\n  **Python**\n  ```python\n  client.track(\n    BaseEvent(\n      event_type=\"\u003cevent_name\u003e\",\n      user_id=\"\u003cuser_id\u003e\",\n      event_properties={\n        \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\",\n      },\n    )\n  )\n  ```\n\n  **Go**\n  ```go\n  client.Track(amplitude.Event{\n    UserID:    \"\u003cuser_id\u003e\",\n    EventType: \"\u003cevent_name\u003e\",\n    EventProperties: map[string]any{}{\n      \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\",\n    },\n  })\n  ```\n\n  **Swift**\n  ```swift\n  amplitude.track(\n    eventType: \"\u003cevent_name\u003e\",\n    eventProperties: [\"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"]\n  )\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eRudderstack\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  rudderanalytics.track('\u003cevent_name\u003e', {\n    \u003cevent_parameters\u003e\n  });\n  ```\n\n  **Python**\n  ```python\n  rudder_analytics.track('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  })\n  ```\n\n  **Ruby**\n  ```ruby\n  analytics.track(\n    user_id: '\u003cuser_id\u003e',\n    event: '\u003cevent_name\u003e',\n    properties: {\n      '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n    }\n  )\n  ```\n\n  **Go**\n  ```go\n  client.Enqueue(analytics.Track{\n    UserId: \"\u003cuser_id\u003e\",\n    Event:  \"\u003cevent_name\u003e\",\n    Properties: analytics.NewProperties().\n      Set(\"\u003cproperty_name\u003e\", \"\u003cproperty_value\u003e\"),\n  })\n  ```\n\n  **Swift**\n  ```swift\n  RSClient.sharedInstance()?.track(\"\u003cevent_name\u003e\", properties: [\n    \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"\n  ])\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003emParticle\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  mParticle.logEvent('\u003cevent_name\u003e', mParticle.EventType.\u003cevent_type\u003e, {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n  ```\n\n  **Swift**\n  ```swift\n  let event = MPEvent(name: \"\u003cevent_name\u003e\", type: .other)\n  event.customAttributes = [\n    \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"\n  ]\n  MParticle.sharedInstance().logEvent(event)\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003ePostHog\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  posthog.capture('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n  ```\n\n  **Python**\n  ```python\n  posthog.capture('distinct_id', '\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  })\n  # Or\n  posthog.capture(\n    'distinct_id',\n    event='\u003cevent_name\u003e',\n    properties={\n      '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n    }\n  )\n  ```\n\n  **Ruby**\n  ```ruby\n  posthog.capture({\n    distinct_id: '\u003cdistinct_id\u003e',\n    event: '\u003cevent_name\u003e',\n    properties: {\n      '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n    }\n  })\n  ```\n\n  **Go**\n  ```go\n  client.Enqueue(posthog.Capture{\n    DistinctId: \"\u003cdistinct_id\u003e\",\n    Event:      \"\u003cevent_name\u003e\",\n    Properties: posthog.NewProperties().\n      Set(\"\u003cproperty_name\u003e\", \"\u003cproperty_value\u003e\"),\n  })\n  ```\n\n  **Swift**\n  ```swift\n  PostHogSDK.shared.capture(\"\u003cevent_name\u003e\", properties: [\n    \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"\n  ])\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003ePendo\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  pendo.track('\u003cevent_name\u003e', {\n    \u003cevent_parameters\u003e\n  });\n  ```\n\n  **Python**\n  ```python\n  pendo.track('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  })\n  ```\n\n  **Swift**\n  ```swift\n  PendoManager.shared().track(\"\u003cevent_name\u003e\", properties: [\n    \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"\n  ])\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eHeap\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  heap.track('\u003cevent_name\u003e', {\n    \u003cevent_parameters\u003e\n  });\n  ```\n\n  **Python**\n  ```python\n  heap.track('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  })\n  ```\n\n  **Swift**\n  ```swift\n  Heap.shared.track(\"\u003cevent_name\u003e\", properties: [\n    \"\u003cproperty_name\u003e\": \"\u003cproperty_value\u003e\"\n  ])\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eDatadog RUM\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  datadogRum.addAction('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n\n  // Or via window\n  window.DD_RUM.addAction('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n\n  // Or via global DD_RUM\n  DD_RUM.addAction('\u003cevent_name\u003e', {\n    '\u003cproperty_name\u003e': '\u003cproperty_value\u003e'\n  });\n  ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eSnowplow (Structured Events)\u003c/summary\u003e\n\n  **JavaScript/TypeScript**\n  ```js\n  tracker.track(buildStructEvent({\n    action: '\u003cevent_name\u003e',\n    category: '\u003ccategory\u003e',\n    label: '\u003clabel\u003e',\n    property: '\u003cproperty\u003e',\n    value: \u003cvalue\u003e\n  }));\n  ```\n\n  **Python**\n  ```python\n  tracker.track(StructuredEvent(\n    action=\"\u003cevent_name\u003e\",\n    category=\"\u003ccategory\u003e\",\n    label=\"\u003clabel\u003e\",\n    property_=\"\u003cproperty\u003e\",\n    value=\u003cvalue\u003e,\n  ))\n  ```\n\n  **Ruby**\n  ```ruby\n  tracker.track_struct_event(\n    action: '\u003cevent_name\u003e',\n    category: '\u003ccategory\u003e',\n    label: '\u003clabel\u003e',\n    property: '\u003cproperty\u003e',\n    value: \u003cvalue\u003e\n  )\n  ```\n\n  **Go**\n  ```go\n  tracker.TrackStructEvent(sp.StructuredEvent{\n\t\tAction:   sp.NewString(\"\u003cevent_name\u003e\"),\n\t\tCategory: sp.NewString(\"\u003ccategory\u003e\"),\n\t\tLabel:    sp.NewString(\"\u003clabel\u003e\"),\n\t\tProperty: sp.NewString(\"\u003cproperty\u003e\"),\n\t\tValue:    sp.NewFloat64(\u003cvalue\u003e),\n\t})\n  ```\n\u003c/details\u003e\n\n\n## Contribute\nWe're actively improving this package. Found a bug? Have a feature request? Open an issue or submit a pull request!\n\n[![Slack](https://img.shields.io/badge/Join%20Us%20on%20Slack-Flisk%20Community-611f69.svg?logo=slack)](https://join.slack.com/t/fliskcommunity/shared_invite/zt-354hesfnm-BbNzveERo9C4JwVQEWvXoA)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffliskdata%2Fanalyze-tracking","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffliskdata%2Fanalyze-tracking","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffliskdata%2Fanalyze-tracking/lists"}