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

@flotify/widget

v0.2.1

Published

Collect user feedback and push it to your project board. Lightweight, framework-agnostic widget.

Downloads

392

Readme

Flotify

Collect feedback. Push to your board.

Open-source feedback widget for your website. Bug reports, feature requests, and questions — synced directly to Trello.

MIT License npm version bundle size

Documentation · Quick Start · Trello Setup Guide


Why Flotify?

Most feedback tools cost $40–150/month and require a backend. Flotify is free, open source, and runs entirely client-side — your users report feedback, and it lands on your Trello board in seconds.

  • Zero backend — calls Trello API directly
  • Framework agnostic — React, Vue, Svelte, Angular, or plain HTML
  • Auto screenshot — one-click page capture or drag & drop
  • 3 feedback types — Bug, Feature, Question
  • Auto metadata — URL, browser, screen size, timestamp
  • Light & dark mode — adapts to your site theme
  • ~19kb — lightweight, lazy-loaded screenshot module

Install

npm install @flotify/widget

Quick Start

import { Flotify } from '@flotify/widget'

Flotify.init({
  provider: 'trello',
  trello: {
    apiKey: 'your-api-key',
    token: 'your-token',
    listId: 'your-list-id',
  },
})

That's it. A feedback bubble appears in the corner of your page.

CDN Usage

<script
  src="https://cdn.jsdelivr.net/npm/@flotify/widget/dist/index.js"
  data-auto-init
  data-trello-api-key="your-api-key"
  data-trello-token="your-token"
  data-trello-list-id="your-list-id"
></script>

Configuration

Flotify.init({
  provider: 'trello',
  trello: {
    apiKey: 'your-api-key',
    token: 'your-token',
    listId: 'your-list-id',
  },
  position: 'bottom-right',  // or 'bottom-left'
  theme: 'light',            // 'light' | 'dark' | 'auto'
  accentColor: '#09090b',    // any hex color
})

| Option | Type | Default | Description | |--------|------|---------|-------------| | provider | 'trello' | — | Required. Integration provider. | | trello.apiKey | string | — | Required. Trello API key. | | trello.token | string | — | Required. Trello auth token. | | trello.listId | string | — | Required. Target list ID. | | position | string | 'bottom-right' | Bubble position. | | theme | string | 'light' | Color theme. | | accentColor | string | '#09090b' | Accent color. |

API

Flotify.init(config)   // Initialize and mount
Flotify.destroy()      // Remove and clean up
Flotify.open()         // Open the feedback form
Flotify.close()        // Close the feedback form
Flotify.toggle()       // Toggle open/close

How It Works

  1. User clicks the feedback bubble on your site
  2. They select a type (Bug / Feature / Question), set priority, add a title and description
  3. Optionally capture a screenshot (auto-capture or drag & drop)
  4. Flotify creates a Trello card with all the details + browser metadata + screenshot attached

Trello Card Format

Title: [🐛 Bug] Button not working on mobile

Description:
The submit button doesn't respond to taps on iOS Safari.
---
Type: 🐛 Bug
Priority: 🔴 high

Metadata:
- URL: https://example.com/checkout
- Browser: Mozilla/5.0 (iPhone; CPU iPhone OS 17_0...)
- Screen: 390x844
- Time: 2026-02-25T14:30:00.000Z

Sent via Flotify

Attachment: screenshot.png (set as card cover)

Integrations Roadmap

| Integration | Status | |-------------|--------| | Trello | ✅ Available | | GitHub Issues | 🔜 Planned | | Linear | 🔜 Planned | | Jira | 🔜 Planned | | Notion | 🔜 Planned | | Asana | 🔜 Planned |

The architecture uses a provider pattern — each integration is a self-contained module. Adding a new provider doesn't touch the core widget code.

Project Structure

flotify/
├── packages/widget/     ← @flotify/widget (npm package)
│   ├── src/core/        ← Widget UI, types, orchestrator
│   └── src/providers/   ← Integration providers (Trello, ...)
├── apps/web/            ← Landing page + documentation (Next.js)
└── examples/html/       ← Standalone HTML demo

Monorepo: pnpm workspaces + Turborepo Widget: TypeScript, zero dependencies, ESM + CJS Landing: Next.js 15, Tailwind CSS v4, shadcn/ui

Development

git clone https://github.com/aminebenabderrahmen/flotify.git
cd flotify
pnpm install
pnpm dev

Contributing

Contributions are welcome! Please open an issue first to discuss what you'd like to change.

License

MIT — free forever, no strings attached.