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 🙏

© 2025 – Pkg Stats / Ryan Hefner

echomark

v1.0.4

Published

Provides an easy-to-use API and components for adding EchoMark’s interactive feedback system to any frontend framework

Readme

🎯 EhcoMark - Customer Feedback Made Simple

EcoMark Logo npm version License Downloads

Collect real-time customer feedback with a beautiful, customizable widget. One line of code. Zero hassle.

🌐 Visit EchoMark · 📚 Documentation · 🐛 Report Bug


✨ Why EcoMark?

  • ⚡ Lightning Fast Setup - Install and integrate in under 60 seconds
  • 🎨 Fully Customizable - Match your brand perfectly with our visual customization tools
  • 📊 Real-Time Analytics - Monitor feedback instantly through your dashboard
  • 🔒 Privacy First - GDPR compliant with enterprise-grade security
  • 🚀 Framework Agnostic - Works with React, Vue, Angular, Next.js, and more

🚀 Quick Start

Step 1: Get Your Site ID

  1. Visit EchoMark Dashboard
  2. Sign up for free (no credit card required)
  3. Add your website to get your unique siteId

Step 2: Integrate the Component

React / Next.js

import { Feedback } from 'echomark';

function App() {
  return (
    <div>
      <h1>My Awesome App</h1>
      
      {/* Add the feedback widget */}
      <Feedback siteId="your_site_id_here" />
    </div>
  );
}

export default App;

Vue 3

<template>
  <div>
    <h1>My Awesome App</h1>
    <Feedback siteId="your_site_id_here" />
  </div>
</template>

<script setup>
import { Feedback } from 'echomark';
</script>

Vanilla JavaScript

<!DOCTYPE html>
<html>
<head>
  <title>My Website</title>
</head>
<body>
  <h1>Welcome!</h1>
  
  <div id="feedback-root"></div>
  
  <script type="module">
    import { Feedback } from 'echomark';
    
    const root = document.getElementById('feedback-root');
    Feedback.mount(root, { siteId: 'your_site_id_here' });
  </script>
</body>
</html>

🎨 Customization

Want to match your brand? Head over to the Customization Options on the EchoMark website to:

  • 🎨 Change colors and themes
  • 📍 Adjust widget position
  • ✍️ Customize button text and labels
  • 🌙 Toggle dark/light mode
  • 📱 Configure mobile responsiveness
  • 💬 Add custom fields

All changes sync automatically - no code updates needed!


⚙️ Advanced Configuration

Props & Options

| Prop | Type | Default | Description | |------|------|---------|-------------| | siteId | string | required | Your unique site identifier from EchoMark dashboard | | position | 'bottom-right' \| 'bottom-left' \| 'top-right' \| 'top-left' | 'bottom-right' | Widget position on screen | | theme | 'light' \| 'dark' \| 'auto' | 'auto' | Color theme (auto detects system preference) | | trigger | 'button' \| 'text' | 'button' | How the feedback widget appears | | showOnLoad | boolean | false | Auto-open widget when page loads |

📊 View Your Feedback

Once integrated, all feedback appears instantly in your EchoMark Dashboard:

  • 📈 Analytics - Track feedback trends and sentiment analysis
  • 🔔 Notifications - Get alerts for critical feedback
  • 📤 Export - Download feedback as CSV or JSON
  • 🔗 Integrations - Connect with Slack, Discord, webhooks, and more

🛠️ Framework-Specific Examples

// app/layout.tsx
import { Feedback } from 'echomark';

export default function RootLayout({ children }) {
  return (
    <html lang="en">
      <body>
        {children}
        <Feedback siteId={process.env.NEXT_PUBLIC_ECOMARK_SITE_ID} />
      </body>
    </html>
  );
}
// pages/_app.tsx
import { Feedback } from 'echomark';
import type { AppProps } from 'next/app';

export default function App({ Component, pageProps }: AppProps) {
  return (
    <>
      <Component {...pageProps} />
      <Feedback siteId={process.env.NEXT_PUBLIC_ECOMARK_SITE_ID} />
    </>
  );
}
<!-- app.vue -->
<template>
  <div>
    <NuxtPage />
    <Feedback :siteId="config.public.ecomarkSiteId" />
  </div>
</template>

<script setup>
import { Feedback } from 'echomark';

const config = useRuntimeConfig();
</script>
<!-- +layout.svelte -->
<script>
  import { Feedback } from 'echomark';
  import { PUBLIC_ECOMARK_SITE_ID } from '$env/static/public';
</script>

<slot />
<Feedback siteId={PUBLIC_ECOMARK_SITE_ID} />

🤝 Support & Community


📄 License

MIT © EchoMark


🙏 Contributing

We welcome contributions! Please see our https://github/ayushjslab/npm-ech-mark for details.


Made with ❤️ by the EchoMark Team

Get Started Free · Star on GitHub