
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.
Tebric — gentle messages that arrive like whispers and fade like a breeze.
A beautifully crafted, lightweight, and customizable toast notification library for React.
Built with Tailwind CSS, motion/react animations, and lucide-react icons —
designed to deliver subtle, elegant, and accessible feedback for your users.
success, error, info, warning, defaultmotion/reactlucide-reacttoast.promise())Install Tebric and its peer dependencies:
npm install tebric motion lucide-react tailwindcss
# or
yarn add tebric motion lucide-react tailwindcss
ToastProviderimport { ToastProvider } from "tebric";
function App() {
return (
<ToastProvider>
<YourApp />
</ToastProvider>
);
}
toast APIimport { toast } from "tebric";
// Simple toasts
toast.success("Operation successful!");
toast.error("Oops! Something went wrong.");
toast.info("Here’s some info.");
toast.warning("Heads up!");
toast.custom(
<div>
<strong>Custom JSX 🎉</strong>
</div>
);
// Promise toast for async calls
toast.promise(fetchData(), {
loading: "Loading data...",
success: "Data loaded successfully!",
error: "Failed to load data.",
});
| Method | Description | Params |
|---|---|---|
toast.success | Show a success toast | (content: ReactNode, options?: Partial<Toast>) |
toast.error | Show an error toast | (content: ReactNode, options?: Partial<Toast>) |
toast.info | Show an info toast | (content: ReactNode, options?: Partial<Toast>) |
toast.warning | Show a warning toast | (content: ReactNode, options?: Partial<Toast>) |
toast.custom | Show custom JSX toast | (content: ReactNode, options?: Partial<Toast>) |
toast.update | Update existing toast by ID | (id: string, updates: Partial<Toast>) |
toast.dismiss | Dismiss toast by ID, or all if no ID | (id?: string) |
toast.promise | Show toast based on Promise state | (promise: Promise<T>, messages: {loading, success, error}) |
react, react-dom, motion, lucide-react.MIT © Ebn Sina
Tebric — gentle messages that arrive like whispers and fade like a breeze.
Notifications crafted to be soft, swift, and beautifully fleeting.
Where every toast is a quiet celebration, graceful and brief.
Feel free to open issues or contribute!
Happy coding with Tebric! 🌿
FAQs
Tebric — gentle messages that arrive like whispers and fade like a breeze.
We found that tebric 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.