
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
quill-auto-links
Advanced tools
Automatically convert typed and pasted links to real links in Quill
A module for the Quill Rich Text Editor to
transform http links (typed or pasted) to <a>
tags automatically.
import Quill from 'quill';
import AutoLinks from 'quill-auto-links';
Quill.register('modules/autoLinks', AutoLinks);
const quill = new Quill(editor, {
modules: {
autoLinks: true
}
});
paste
Enable link formatting when pasting text - defaults to true
type
Enable link formatting when typing text - defaults to true
Examples:
// Enable for pasting and typing
const quill1 = new Quill(editor, {
modules: {
autoLinks: true
}
});
// Disable for pasting and typing
const quill2 = new Quill(editor, {
modules: {
autoLinks: {
paste: false,
type: false
}
}
});
// Disable for pasting, but enable for typing
const quill3 = new Quill(editor, {
modules: {
autoLinks: {
paste: false,
type: true
}
}
});
FAQs
Automatically convert typed and pasted links to real links in Quill
The npm package quill-auto-links receives a total of 5,801 weekly downloads. As such, quill-auto-links popularity was classified as popular.
We found that quill-auto-links 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.