Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
ember-cli-notifications
Advanced tools
ember install ember-cli-notifications
An Ember addon that adds Atom inspired notification messages to your app.
Interactive documentation can be found here.
As of 5.0.0 we no longer depend on Font Awesome so you can remove any configuration you have related to the icons:
var ENV = {
'ember-cli-notifications': {
includeFontAwesome: true
}
}
or
var ENV = {
'ember-cli-notifications': {
icons: 'bootstrap'
}
}
We have also updated the name of the service to be simply notifications
so you can now inject the notifications service with a much simpler inject statement:
import Controller from '@ember/controller';
import { inject as service } from '@ember/service';
export default class MyController extends Controller {
@service notifications;
}
We have removed the use of CSS Modules so you can now override the styles more effectively without needing as many hacks. You can remove any strange hacks that you might have implemented in your app to override styles.
See the Contributing guide for details.
FAQs
Atom inspired notification messages for ember-cli
The npm package ember-cli-notifications receives a total of 3,046 weekly downloads. As such, ember-cli-notifications popularity was classified as popular.
We found that ember-cli-notifications demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.