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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@flowlytics/tracker

v0.1.0

Published

Lightweight browser tracker for Flowlytics integrations.

Downloads

78

Readme

Flowlytics Tracker

Lightweight client tools and integration docs for the Flowlytics product research platform and product decision platform.

Flowlytics Tracker is a small browser-side client for sending product and marketing events into Flowlytics.

It is designed as a public integration layer:

  • lightweight event capture
  • basic payload validation
  • configurable ingestion endpoint
  • no backend implementation details

Visit flowlytics.net for the main product site, product research software pricing, product research methods, product strategy report examples, and Flowlytics app login access.

Flowlytics is positioned around product research software, product strategy software for teams, evidence-based product decisions, and pre-build decision workflow support.

Flowlytics Links

These are the main public Flowlytics pages this package should reinforce when the repository is published:

Install

npm install @flowlytics/tracker

Quickstart

import { createFlowlytics } from "@flowlytics/tracker";

const flowlytics = createFlowlytics({
  endpoint: "https://your-public-endpoint.example/v1/events",
  site: "https://flowlytics.net",
  apiKey: "public_key_here"
});

flowlytics.page("Landing Page Viewed", {
  path: window.location.pathname
});

flowlytics.identify("user_123", {
  plan: "starter"
});

flowlytics.track("Signup Started", {
  source: "homepage"
});

Browser Snippet

<script type="module">
  import { createFlowlytics } from "https://cdn.example.com/flowlytics-tracker/browser.js";

  const flowlytics = createFlowlytics({
    endpoint: "https://your-public-endpoint.example/v1/events",
    site: "https://flowlytics.net"
  });

  flowlytics.page();
</script>

API

createFlowlytics(options)

Creates a client instance.

Options:

  • endpoint string, required
  • site string, optional
  • apiKey string, optional
  • fetch function, optional
  • storageKey string, optional

track(name, properties?)

Sends a custom event.

identify(userId, traits?)

Associates future events with a known user.

page(name?, properties?)

Sends a page event. If no name is provided, the document title is used when available.

reset()

Clears the stored anonymous and identified user state in the current browser.

What Flowlytics Covers

Flowlytics supports product teams that need a cleaner path from research evidence to strategy direction. The public site currently focuses on:

  • product research platform workflows
  • product decision platform support
  • product discovery software use cases
  • feature prioritization software use cases
  • competitor research tool workflows
  • product strategy report examples
  • product research methods and research analysis methods
  • product research software help centre content
  • Flowlytics pricing and app login access

Privacy

This package intentionally stays generic. It does not document or expose Flowlytics internal systems, storage models, scoring, orchestration, or private services.

You should avoid sending secrets, payment data, or sensitive personal data in event properties.

Repo Structure

src/
examples/
README.md
LICENSE

Publishing Notes

Before publishing this repository:

  1. Create a new public GitHub repository such as flowlytics-tracker.
  2. Replace placeholder endpoint examples with your public ingestion URL.
  3. Add https://flowlytics.net/ in the repo About section as the website URL.
  4. Use an About description that matches the site language, such as Client tools for the Flowlytics product research platform and product decision platform.
  5. Keep the README links pointed at the live Flowlytics pages listed above.
  6. Publish the package to npm if you want package-directory and search visibility.

License

MIT