
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@sientech/quill-image-alt-blot
Advanced tools
Quill Rich Editor 擴充可支援插入有 alt 的圖片
yarn add @sientech/quill-image-alt-blot
ImageBlotAlt: 擴展原 embed blots, 可建立包含 alt 資料的 blotAltImageUploader: 擴展 quill-image-uploader 模組,在插入資料時,使用 ImageBlotAlt blot。import { ImageBlotAlt, AltImageUploader } from '@sientech/quill-image-alt-blot'
import '@sientech/quill-image-alt-blot/dist/index.css'
import { Quill } from 'quill'
// register blot
Quill.register(ImageBlotAlt)
// register imageUploader
Quill.register("modules/imageUploader", AltImageUploader);
const quill = new Quill(editor, {
// ...
modules: {
imageUploader: {
upload: (file) => {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(
{
src: 'img src',
alt: 'img alt',
caption: 'img caption'
}
);
}, 3500);
});
},
},
},
});
FAQs
Quill Rich Editor 擴充可支援插入有 alt 的圖片
The npm package @sientech/quill-image-alt-blot receives a total of 1 weekly downloads. As such, @sientech/quill-image-alt-blot popularity was classified as not popular.
We found that @sientech/quill-image-alt-blot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.