Installation

Install Flotify in your project using your preferred package manager.

Package Manager

npm install @flotify/widget

CDN (Script Tag)

If you're not using a bundler, you can include Flotify directly via a script tag. This is the fastest way to get started with plain HTML.

index.html
<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>
*With the CDN approach, the widget automatically initializes using the data-* attributes. No JavaScript needed.

Requirements

Flotify has zero dependencies. It works in any modern browser (Chrome, Firefox, Safari, Edge). The only external resource loaded is html2canvas for the auto-screenshot feature, and it's lazy-loaded only when the user opens the feedback form.