
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@redbuck/toast
Advanced tools
npm i @redbuck/toast或者
yarn add @redbuck/toast
html
<link rel="stylesheet" href="./lib/toast.css">
<script type="text/javascript" src="./lib/toast.js"></script>
模块
import Toast from '@reabuck/toast'
import '@reabuck/toast/lib/toast.css'
const toast = Toast(ToastOption);
// toast.d.ts
type ToastOption = string | managerType
managerType:
| 属性 | 类型 | 默认值 | 描述 |
|---|---|---|---|
| message | String | '' | 文字 |
| type | String | 'text' | 类型 |
| duration | Number | 2000 | 延时,0表示永不消失 |
| mask | Boolean | false | 是否有背景浮层 |
| mountTo | Function | () => body | 挂载点 |
| className | String | '' | 自定义根标签class |
toast: ToastManager实例.可通过实例方法clear清除自身
Toast.success(option);
Toast.loading(option);
Toast.error(option);
别名即Toast({type: 'name'})的简写方式.
如Toast.success('message')等价于Toast({message: 'message', type: 'success'})
注,
loading默认duration为0,不关闭,需要指定时间或手动关闭
FAQs
drag to sort element
We found that @redbuck/toast demonstrated a not healthy version release cadence and project activity because the last version was released 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.