All Projects → tnicola → ngx-feedback

tnicola / ngx-feedback

Licence: MIT license
Angular user feedback collector library

Programming Languages

typescript
32286 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ngx-feedback

larafeed
Laravel package for providing visual feedback via screenshots.
Stars: ✭ 42 (+147.06%)
Mutual labels:  screenshot, feedback
feedback
A simple widget for getting better feedback.
Stars: ✭ 178 (+947.06%)
Mutual labels:  feedback, user-feedback
Material-Smart-Rating
😍⭐⭐Material Smart Rating App - An Android library that encourages users to rate the app on Google Play.⭐⭐😘
Stars: ✭ 30 (+76.47%)
Mutual labels:  feedback, feedback-form
Beetle
Shake to create Bug Report on GitHub, GitLab and Azure DevOps!
Stars: ✭ 45 (+164.71%)
Mutual labels:  screenshot, feedback
dotfiles
. files
Stars: ✭ 37 (+117.65%)
Mutual labels:  screenshot
ToRat client
This is the ToRat client, a part of the ToRat Project.
Stars: ✭ 29 (+70.59%)
Mutual labels:  screenshot
Food-Ordering-Application-with-Review-Analyzer
A food ordering android application with feedback analyzer to improve food suggestions to customer.
Stars: ✭ 67 (+294.12%)
Mutual labels:  feedback
nougat
Screenshot wrapper
Stars: ✭ 20 (+17.65%)
Mutual labels:  screenshot
react-native-screen-keyboard
On-screen keyboard with customisable keys and tactile / UI feedback 📱
Stars: ✭ 22 (+29.41%)
Mutual labels:  feedback
VIDEOconvertor
A stable and Fast telegram video convertor bot which can encode into different libs and resolution, compress videos, convert video into audio and other video formats, rename with thumbnail support, generate screenshot and trim videos.
Stars: ✭ 180 (+958.82%)
Mutual labels:  screenshot
screenshot.py
Taking a screenshot of a webpage.
Stars: ✭ 49 (+188.24%)
Mutual labels:  screenshot
frida-screenshot
Grab screenshots using Frida.
Stars: ✭ 35 (+105.88%)
Mutual labels:  screenshot
nightwatch-vrt
Visual Regression Testing tools for nightwatch.js
Stars: ✭ 59 (+247.06%)
Mutual labels:  screenshot
pmChatBot
A simple feed-back bot written in PHP. Like Livegram. Heroku Support
Stars: ✭ 31 (+82.35%)
Mutual labels:  feedback
screentray-distribution
macOS app for capturing, annotating and sharing screenshots
Stars: ✭ 28 (+64.71%)
Mutual labels:  screenshot
ScreenshotToClipboard
Screenshots taken are copied to the clipboard.
Stars: ✭ 28 (+64.71%)
Mutual labels:  screenshot
LAN-Messenger
Official open-source repository for LAN Messenger
Stars: ✭ 17 (+0%)
Mutual labels:  screenshot
go-scrap
Go library to capture screen pixels for screenshots or screen recording
Stars: ✭ 68 (+300%)
Mutual labels:  screenshot
Switch-Screenshots
Script to organize Nintendo Switch screenshots by directory instead of date.
Stars: ✭ 50 (+194.12%)
Mutual labels:  screenshot
dev-docs
This repo contains the markdown files and static assets powering developer.bigcommerce.com. https://developer.bigcommerce.com/
Stars: ✭ 32 (+88.24%)
Mutual labels:  feedback

npm version

ngx-feedback 📸💬

Angular user feedback library

ngx-feedback is an Angular library for collecting Web app users feedbacks. The user will be able to leave a review for the entire page or select a a specific feature and rate it, leaving a comment.

This library is meant to provide a fast, easy and clean way to collect user feedback through visible button and it provides a service that listens for incoming feedback and provides the data.

ngx-feedback relies upon an already existing javascript library html2canvas in order to take screenshots of the page.

Features

  • A feedback button will be attached automatically to the edge of the page.
  • The possibility to choose for a generic or a specific feedback.
  • A screenshot of the selected area on the page.

Demo

Look at the demo.

Install

You'll need to install html2canvas lib (required peer-dependency) in order to be able to take screeshots:

npm i html2canvas

Then you can install ngx-feedback:

npm i ngx-feedback

Usage

The usage is pretty simple, you just need to import NgxFeedbackModule and NgxFeedbackService and then start listening for feedbacks.

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { NgxFeedbackModule } from 'ngx-feedback';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    NgxFeedbackModule // Add this to your import
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

app.component.ts

import { Component, OnInit } from '@angular/core';
import { NgxFeedbackService, FeedbackData } from 'ngx-feedback';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
    constructor(private readonly feedbackService: NgxFeedbackService) {}
    title = 'ngx-feedback-lib';

    ngOnInit() {
        this.feedbackService.listenForFeedbacks().subscribe((data: FeedbackData) => {
            // Use the data coming from the feedback here
        });
    }
}

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].