
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@camunda/c4-notifications
Advanced tools
Camunda C4 Notifications is a React component library for displaying notifications in Camunda Cloud applications.
A flexible and customizable notification library for React applications.
Explore the components and their extensive features in our Storybook deployment — discover all the notification types, customization options, and interactive examples!
To install the library, use npm:
npm install @camunda/c4-notifications
To display notifications, first you need to add the Notifications component to your application's root.
import { Notifications } from '@camunda/c4-notifications';
function App() {
return (
<div>
{/* Other components */}
<Notifications />
</div>
);
}
Then, you can trigger notifications from anywhere in your application using the notify object.
import { notify } from '@camunda/c4-notifications';
// Success notification
notify.success({
title: 'Success',
subtitle: 'The operation was successful.',
});
// Error notification
notify.error({
title: 'Error',
subtitle: 'Something went wrong.',
});
You can also create notifications with actions by providing an action object in the options.
import { notify } from '@camunda/c4-notifications';
notify.info({
title: 'Update Available',
subtitle: 'A new version of the application is available.',
options: {
action: {
label: 'Update',
onClick: () => {
console.log('Updating...');
},
},
},
});
This library relies on the Carbon Design System for its styling. To ensure that the components are rendered correctly, you must have the Carbon theme and other necessary styles imported into your application.
For example, you can import the styles in your main SCSS file:
@use '@carbon/react';
Or in your main JavaScript/TypeScript file:
import '@carbon/react/scss/index.scss';
Please refer to the Carbon Design System documentation
for more information on how to set up the styles in your project. You can also see an example of how to set up the
styles in the index.scss file in this repository.
You can customize the top offset of the notifications by providing a topOffset property in the Notifications
component, or the z-index by providing a zIndex property.
import { Notifications } from '@camunda/c4-notifications';
function App() {
return (
<div>
{/* Other components */}
<Notifications topOffset={100} zIndex={1000} />
</div>
);
}
To get started with development, follow these steps:
# Install dependencies
npm install
# Start the Storybook server
npm run storybook
# Run unit tests
npm run test:unit
# Build the library
npm run build
Contributions are welcome! Please refer to the project's contribution guidelines for more information.
FAQs
Camunda C4 Notifications is a React component library for displaying notifications in Camunda Cloud applications.
We found that @camunda/c4-notifications demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.