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

feedbacky-popup

v1.0.1

Published

With this button, you will be able to learn the opinions of your users or customers.

Readme

FEEDBACKY-POPUP

Demo Link: Click Here

With this button, you will be able to learn the opinions of your users or customers.

You can easily integrate it into your website and start using it.

Used Technologies

  • React
  • TypeScript
  • Eslint
  • Axios
  • Webpack
  • Babel
  • Testing Library
  • Jest
  • Sweetalert

How To Use

Enter the following command in your console screen to add it to your existing React project:

npm install feedbacky-popup

You can then import, for example, into your App.js file as follows:

import { Feedbacky } from "feedbacky-popup";

React JSX example usage is as follows:

<Feedbacky sheetsId={yourSheetsId} />

Save Date Info

If you want to save the current date, set the sendDateInfo parameter to true.

Parameters

Feedbacky takes many parameters so you can easily integrate it into your own site. These are included in the table below:

| Parameter Name | Type | Required | Example Value | Default Value | --- | --- | --- | --- |--- | sheetsId | string | ✓ | | | | iconWidth | string | X | "30px" | "30px" | | iconBottom | string | X | "35px" | "35px" | | iconTop | string | X | "32px" | "32px" | | iconRight | string | X | "35px" | "35px" | | iconLeft | string | X | "32px" | "32px" | | successModalTitleColor | string | X | "#50e150" | "#50e150" | | modalButtonColor | string | X | "#50e150" | "gold" | | modalButtonTextColor | string | X | "#50e150" | #000000 | | customFeedbackyIcon | string | X | "https://res.cloudinary.com/dfqecvogl/image/upload/v1694343282/uxz5cxeoj6potv7aahmm.png" | "https://res.cloudinary.com/dfqecvogl/image/upload/v1694343282/uxz5cxeoj6potv7aahmm.png" | | successModalTitle | string | X | "WE HAVE GOT YOUR FEEDBACK" | "WE HAVE GOT YOUR FEEDBACK" | | modalTitle | string | X | "SEND YOUR FEEDBACK" | "SEND YOUR FEEDBACK" | | modalButtonText | string | X | "SEND" | "SEND" | | sendDateInfo | boolean | X | false | false | | sheetsDateColumnName | string | X | "Date" | "Date" | | sheetsMessageColumnName | string | X | "Message" | "Message" | | errorModalText | string | X | "Something went wrong. Please try again later." | "Something went wrong. Please try again later." |

SheetsId parameter

You must give the sheetsId parameter to Feedbacky. This application saves your users' feedback in your Google Sheets. For this, Feedbacky needs the Google document ID you created.

How Can I Save Data and Get Sheets ID?

example App Script

const sheets = SpreadsheetApp.openByUrl("https://docs.google.com/spreadsheets/d/1-VfLt5S9aKPXQSOf7qtIjRoYDTqt6c3PYD4EpB9qML8/edit#gid=0");
 //if you have changed your sheet name then replace the below Sheet1 with your sheet name
const sheet = sheets.getSheetByName("Sayfa1");
function doPost(e){
  let data = e.parameter;
  sheet.appendRow([data.Date,data.Message]);
  return ContentService.createTextOutput("Your message was successfully sent to the Googlesheet database!");
}