
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
tiny-notify
Advanced tools
A super lightweight JavaScript toast/notification system with zero dependencies.
Super lightweight, dependency-free toast/notification system for the web.
top-right
, bottom-left
, top-center
, etc.)timeout: 0
or Infinity
)npm install tiny-notify
Import in your app:
import TinyNotify from "tiny-notify";
TinyNotify.success("Hello from bundler!",
{
position: "bottom-right",
timeout: 2500
}
);
<script src="https://cdn.jsdelivr.net/gh/rohit-chouhan/tiny-notify/dist/tiny-notify.js"></script>
Now TinyNotify is available globally:
<button onclick="TinyNotify.success('Saved successfully!', { position: 'top-right', timeout: 2000 })">
Show Success
</button>
TinyNotify.show("Hello World!");
TinyNotify.success("Operation successful!");
TinyNotify.error("Something went wrong...");
TinyNotify.info("Here is some info");
TinyNotify.warning("Be careful!");
TinyNotify.show("Custom notification", {
type: "info", // success | error | warning | info
position: "bottom-left", // top-right | top-left | bottom-right | bottom-left | top-center | bottom-center
timeout: 4000, // ms; 0 or Infinity = sticky
dismissible: true, // show × button
showProgress: true, // progress bar
maxPerPosition: 3 // auto-trim old toasts
});
TinyNotify.setDefaults({
position: "top-right",
timeout: 3000,
maxPerPosition: 4
});
TinyNotify.clear(); // removes all toasts
👉 Live Playground https://tiny-notify.js.org/
Copyright © 2025 Rohit Chouhan. Licensed under the MIT LICENSE.
FAQs
A super lightweight JavaScript toast/notification system with zero dependencies.
We found that tiny-notify 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.