
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
ee-feedback-module
Advanced tools
this is an ui library which will render user feedback form based on feedback form id
This module captures users’ responses/feedback regarding the configuration created or the product used.
Run npm i ee-feedback-module and install the package in your application.
Import EccentricFeedbackLibraryModule in app.module.ts and customize feedback form theme as per your UI. font will be inherited from the main application
EccentricFeedbackLibraryModule.forRoot({
apiUrl: "<your-backend-url>"
primaryColor: '#FFBA00',
secondaryColor: '#FBFBFB',
backgroundColor: '#1D1D1D',
buttonBorderRadius: '0px',
titleFontSize: '23px',
primaryFontSize: '20px',
secondaryFontSize: '20px',
inputBackgroundColor: '#1D213B',
inputTextColor: '#FBFBFB',
containerBorderRadius: '23px',
buttonFontSize: '14px',
buttonHeight: '36px',
buttonWidth: '150px'
})
Create a service for feedback module and inject on root component so that we can interact with feedback module, from anywhere in the application, Inject this service file to the app.component.ts also define one field type = {}; this type will be used to communicate with our feedback module
import { Injectable, OnDestroy } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class FeedbackService {
type: any = {}
feedbackType = new BehaviorSubject<any>({});
feedbackType$ = this.feedbackType.asObservable();
constructor() {
}
}
Add the following code in the constructor function
feedbackService.feedbackType$.subscribe((params) => {
this.feedbackService.type = params;
this.type = params;
})
Add the below selector to the app.component.html file.
<ee-feedback-module [type]="feedbackService.type" [toggleFeedback]="this.feedbackService.feedbackType"></ee-feedback-module>
We need to integrate the feedback service into any part of the application and specify the feedback form type ID. We can also include custom data in the response when users submit the forms. For example, we might include the user's email ID.
this.feedbackService.feedbackType.next({
type: "<form Id>",
customData: {
email: "eccentricengine@email.com"
}
})
FAQs
this is an ui library which will render user feedback form based on feedback form id
The npm package ee-feedback-module receives a total of 3 weekly downloads. As such, ee-feedback-module popularity was classified as not popular.
We found that ee-feedback-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.