Skip to content

Releases: OpenFeed-ink/openfeed

🚀 OpenFeed v0.1.0

02 Apr 18:19
3215d24

Choose a tag to compare

🚀 OpenFeed

OpenFeed is an open-source feedback management platform that helps you collect user insights, prioritize features, and communicate updates, all through a single embeddable widget.

It combines everything you need to stay aligned with your users, without adding complexity to your workflow.

✨ Features

  • Feedback Board
    Let users submit ideas and upvote features. Duplicate suggestions are automatically detected to keep your board clean and focused.
  • Public Roadmap
    Share what you're building with a simple kanban view (Planned / In Progress / Done). Build transparency and trust with your users.
  • Changelog
    Publish product updates with ease. Notify users directly inside your app with a built-in notification system.
  • AI-Powered Insights
    Automatically group similar feedback and generate summaries to reduce noise and highlight what matters most.
  • AI Product Advisor
    Ask what to build next and get clear, data-driven recommendations based on your feedback and roadmap.
  • Embeddable Widget
    Add OpenFeed to your app with a single script tag or via npm. No complex setup required.
  • Widget Customization
    Control appearance, position, and features directly from your dashboard — no code changes needed.
    Announcements
    Display in-app banners and updates without modifying your codebase.

⚙️ Installation

npm install @openfeed/widget
# or
pnpm add @openfeed/widget
# or
yarn add @openfeed/widget

Prefer a script tag?

<script async src="https://cdn.openfeed.ink/widget/v1/widget.iife.js" data-project-id="your-project-id"></script>

React

import { OpenFeed } from '@openfeed-ink/widget'

export default function App() {
  return (
    <>
      <YourApp />
      <OpenFeed projectId="your-project-id" />
    </>
  )
}

Next.js

// app/layout.tsx
import { OpenFeed } from '@openfeed-ink/widget'

export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        {children}
        <OpenFeed projectId="your-project-id" />
      </body>
    </html>
  )
}

Plain HTML / Any framework

<script
  async
  src="https://cdn.openfeed.ink/widget/v1/widget.iife.js"
  data-project-id="your-project-id">
</script>

One line. The widget loads, fetches your configuration, and renders inside a Shadow DOM so it never conflicts with your app's styles.

🧠 Why OpenFeed?

  • Flat pricing — no scaling costs
  • No user limits
  • No forced branding
  • Fully open source
  • Optional self-hosting
  • Built-in AI features (no extra fees)

🚀 Getting Started

  • Add the widget to your app
  • Customize it from your dashboard
  • Start collecting feedback instantly
  • Use AI insights to decide what to build next

🌟 Philosophy

OpenFeed is built around a simple idea:
building better products starts with listening to users and acting on their feedback quickly.

No unnecessary complexity. No hidden limits. Just the tools you need to ship with confidence.