Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@react-md/alert
Advanced tools
Create accessible alerts that can be displayed to users in your app. This
package provides a MessageQueue
for showing messages and a useAddMessage
hook to push alerts into the queue.
npm install --save @react-md/alert
It is generally recommended to also install the following packages since they work hand-in-hand with this package:
npm install --save @react-md/theme \
@react-md/typography \
@react-md/button
You should check out the full documentation for live examples and more customization information, but an example usage is shown below.
src/index.tsx
import { render } from "react-dom";
import { MessageQueue } from "@react-md/alert";
import App from "./App";
render(
<MessageQueue id="main-alerts">
<App />
</MessageQueue>,
document.getElementById("root")
);
src/App.tsx
import type { ReactElement } from "react";
import { useAddMessage } from "@react-md/alert";
import { Button } from "@react-md/button";
function App(): ReactElement {
const addMessage = useAddMessage();
return (
<Button
id="button-1"
onClick={() => addMessage({ children: "Example Message" })}
>
Show Message
</Button>
);
}
export default App;
FAQs
Create accessible alerts through snackbars and banners.
We found that @react-md/alert 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.