
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
@openfin/notifications
Advanced tools
The HERE Notification Center offers a consistent and streamlined way for developers to create, display, and manage desktop notifications. It also supports handling notification events seamlessly within a web browser
All notifications are displayed, categorized, and managed within a centralized Notification Center UI.
To connect your application to the Notification Center, install the HERE Notification Center Client API package.
npm install @openfin/notifications
Connect to the Notification Center by importing the module.
import { connect, create } from '@openfin/notifications';
// connect to the notification center.
await register();
// call api methods...
await create(notificationOptions);
Before using the Notification Center, ensure your application is configured with a fin context from the @openfin/core-web package.
This context provides the necessary runtime connection and environment information.
For setup instructions, refer to the @openfin/core-web documentation.
Connect to the Notification Center by importing the module and providing the required options, including the finContext, serviceId, and the container element.
The serviceId must match the one used by the Notification Center service to ensure successful communication.
The id, title, and icon define the identity of the client application within the Notification Center.
The id should remain consistent across sessions to ensure notifications are correctly associated with the same client.
import { connect, create } from '@openfin/notifications';
// ...initialize fin context.
// connect to the notification center.
await register({
externalProviderConfig: {
finContext: fin,
serviceId: 'notification-center-service-channel',
id: 'notification-provider-app-unique-id',
title: 'My Notification Provider App',
icon: 'https://example.com/logo.png'
}
});
// call api methods...
await create(notificationOptions);
FAQs
HERE Notification Center Client API
We found that @openfin/notifications demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 66 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
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.