AnandChowdhary/feeedback
- July 24, 2019
- View on GitHub
- TypeScript
- 8 stars
- 8 watchers
- 3 forks
Feeedback is a JavaScript widget to easily collect feedback from your users. It’s small, accessible, and customizable.
⭐ Getting started
Install the library as a dependency:
npm install feeedback
Or, if you’re using Yarn:
yarn add feeedback
Then import the library:
import Feeedback from “feeedback”;
And initialize it with an optional settings object:
const widget = new Feeedback({
onSubmit: feedback => new Promise((resolve, reject) => {
// Send feedback to your server
resolve();
});
});
You can also use a CDN:
<script src=“https://unpkg.com/feeedback”></script>
When you want to open the feedback modal, you can do:
widget.open();
🛠️ Development
Start development server with HMR and prettier:
yarn start
Production
Build a production version:
yarn build
💡 Examples
Google Analytics
The easiest way to collect feedback to to use Google Analytics as a backend. If you already have GA loaded on your webpage:
ga(“create”, “UA-XXXXX-Y”, “auto”);
const widget = new Feeedback({
onSubmit: feedback => new Promise((resolve, reject) => {
ga(“send”, “feedback”, feedback.rating, feedback.message);
resolve();
});
});
Custom backend
const widget = new Feeedback({
onSubmit: feedback =>
fetch(“https://example.com/collect”, {
method: “POST”,
headers: {
“Content-Type”: “application/json”
},
body: JSON.stringify(feedback)
});
});
Events
Feeedback emits events which you can listen to:
const widget = new Feeedback();
widget.on(“beforeSubmit”, result => {
// Do something with `result`
});
You can use .off()
to stop listening to an event, and ”*”
to subscribe to all events. Events emitted are, in order of lifecycle:
ready
beforeCreate
created
open
andclose
reset
beforeSubmit
submit
orerror
finish
📝 License
MIT © Anand Chowdhary