
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ui-toast-notification
Advanced tools
This package provides a customizable toast notification system for React applications.
A customizable toast notification system for React applications.
top-right, top-left, bottom-right, bottom-left)npm install ui-toast-notification
import useNotification from 'ui-toast-notification';
const { triggerNotification, notificationComponent } = useNotification('top-right');
return (
<div>
<button
onClick={() =>
triggerNotification({
message: 'This is a success notification!',
type: 'success',
duration: 3000,
position: 'top-right'
})
}
>
Show Notification
</button>
{notificationComponent}
</div>
);
useNotification(position?: string)Returns:
triggerNotification(notificationProps: NotificationProps): Show a notification.notificationComponent: React element to render notifications.NotificationProps| Name | Type | Description |
|---|---|---|
| message | string | Notification message |
| type | "success" | "error" | "info" | "warning" | Notification type |
| duration | number | Duration in ms before auto-dismiss |
| position | string | Position of notification |
You can customize styles in src/components/notification.css.
npm run rollupsrc/index.tssrc/components/notification.tsxsrc/hooks/useNotification.tsxFAQs
This package provides a customizable toast notification system for React applications.
We found that ui-toast-notification demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.