
Product
Socket Now Protects the Chrome Extension Ecosystem
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
BuzzBox is a lightweight, elegant, and fully customizable JavaScript UI library for alerts, toasts, confirms, modals, loaders, and progress bars. Designed to be easy to use and visually appealing, BuzzBox supports 5 style variants, theming, flexible positioning, and full programmatic control.
npm install buzzbox
import {
alert,
toast,
confirm,
modal,
loader,
progress
} from "buzzbox";
alert.success.filled("Success Message");
alert.danger.outline("Danger Message");
alert.warning.glass("Warning Alert", "#ff0");
alert.info.custom("Custom Info", { background: "#001a33", color: "#d0e9ff" });
✅ Variants: filled
, outline
, glass
, custom
, customOutlined
✅ Types: success
, danger
, warning
, info
toast.success.filled("Saved!", "top-right");
toast.warning.outline("Heads up", "bottom-left");
toast.info.custom("Custom Toast", {
background: "#0277bd",
textColor: "#e0f7fa",
borderColor: "#01579b"
}, "top-right");
✅ Positions: top-left
, top-right
, bottom-left
, bottom-right
confirm.success.outline("Title", "Are you sure?", () => {
console.log("Confirmed!");
});
confirm.danger.custom("Warning", "Delete item?", {
bg: "#1e1a16",
text: "#fff",
border: "#e0a34e",
buttonBg: "#fcbf71",
buttonText: "#000",
buttonBorder: "#e0a34e"
}, () => console.log("Deleted"));
loader.show.success.filled("Please wait...", "top-right");
loader.show.warning.outline("Processing...", "bottom-left");
loader.hide();
progress.info.filled("Uploading...", "forward", "top-left", 3000);
progress.success.custom("Done!", {
background: "#003300",
textColor: "#ccffcc",
borderColor: "#00ff00"
}, "forward", "bottom-right", 3000);
✅ Direction: forward
/ reverse
modal({
title: "Are you sure?",
content: "This action cannot be undone.",
actions: [
{ label: "Confirm", value: "yes", className: "success-btn" },
{ label: "Cancel", value: "no", className: "danger-btn" }
]
}).then(result => console.log("Result:", result));
FAQs
The ultimate solution for popup boxes.
We found that buzzbox 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.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.