Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
chat-engine-desktop-notifications
Advanced tools
Show a desktop notification when a message is received and app is not in focus.
Show a desktop notification when a message is received and app is not in focus.
The desktop notification plugin is straight forward to implement. The following are supported and tested browsers:
Browser | Supported | Last Validated Version |
---|---|---|
Chrome | Yes | v.68 |
Firefox | Yes | v.61 |
Safari | Yes | v.11.1 |
Opera | Yes | v.55 |
IE | ? | N/a |
npm install chat-engine-desktop-notifications --save
CE currently supports the following options for displaying desktop notifications.
For additional configuration please refer to the following (MDN reference)[https://developer.mozilla.org/en-US/docs/Web/API/notification].
let desktopNotificationsConfig = {
title: (event) => {
return '<INSERT_MSG_TITLE_HERE>'
},
message: (event) => {
return event.data.text; // (default) displays CE message text for the room
},
icon: (event) => {
return './pn-cloud.png';
},
callback: (event) => {
window.focus();
}
}
Then to initialize, attach the plugin to the ChatEngine.chat
object:
ChatEngine.chat.plugin(
ChatEngineCore.plugin['chat-engine-desktop-notifications'](desktopNotificationsConfig)
);
By default, the CE desktop notification plugin handles the prompting the user to Show Notifications.
To instantiate this earlier, place the following snippet within your initialization code for CE:
Notification.requestPermission().then((res) => {
console.log(res);
});
To see the desktop notifications example in action, add your CE pub/sub keys to '''example/desktop.js''' and then run the following:
cd example
npm install
http-server
Open a supported browser to 127.0.0.1:8080
and open the desktop.html file.
FAQs
Show a desktop notification when a message is received and app is not in focus.
The npm package chat-engine-desktop-notifications receives a total of 2 weekly downloads. As such, chat-engine-desktop-notifications popularity was classified as not popular.
We found that chat-engine-desktop-notifications demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.