Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
react-simple-toasts
Advanced tools
Simple toast message popup for React ⚛️
npm install --save react-simple-toasts
a very simple use
toast(message);
// or
toast(message, (millisecond = 3000));
// or
toast(message, { time: 3000, ...options });
import React from 'react';
import toast from 'react-simple-toasts';
const Example = () => (
<div className="example">
<button onClick={() => toast('Hello toast!')}>Toast</button>
<button onClick={() => toast('Message', 1000)}>One-second</button>
</div>
);
Name | Type | Default | Description |
---|---|---|---|
time | number | 3000 | The millisecond time that the message is displayed |
className | string | '' | Can be used to customize styles |
clickable | string | false | Can click the message |
onClick | (event) => void | Set the handler to handle click event Must be used with clickable: true |
You can specify config defaults.
index.js
import { toastConfig } from 'react-simple-toasts';
toastConfig({
time: 5000,
className: 'my-toast-message',
});
Name | Type | Default | Description |
---|---|---|---|
time | number | 3000 | The millisecond time that the message is displayed. |
className | string | '' | Can be used to customize styles. |
position | string | center | left, center, right |
Support it by joining stargazers for this repository. :star:
MIT © almond-bongbong
FAQs
Instant, lightweight toast notifications for React. No providers or containers needed.
The npm package react-simple-toasts receives a total of 820 weekly downloads. As such, react-simple-toasts popularity was classified as not popular.
We found that react-simple-toasts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.