
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.
@wellspr/react-quill-editor
Advanced tools
This is a react typescript wrapper for [Quill JS](https://quilljs.com).
This is a react typescript wrapper for Quill JS.
All editor components and hooks must be children of a Provider component, which optionally accepts a config object containing custom options and custom fonts to be used in the project.
<Provider config={{ options: customOpt, fonts: customFonts }}>
{children}
</Provider>
The Editor component renders the editor on the screen, and expects a prop height. Bellow we render the Editor with a height of 300px.
<Editor height={300} />
One can also provide height as a string, including specific units, for example height={"300px"} or height={"85%"}.
A custom toolbar can be provided as a child of Editor.
App.tsx
import { FC } from "react";
import MyEditorProvider from "./components/MyEditorProvider";
import MyEditor from "./components/MyEditor";
const App: FC = () => {
return (
<MyEditorProvider>
<MyEditor />
</MyEditorProvider>
);
};
export default App;
MyEditorProvider.tsx
import { FC, ReactNode } from "react";
import { Provider } from "react-quill-editor";
import { customOpt, customFonts } from "../config/myCustomConfig";
interface MyEditorProps {
children: ReactNode;
}
const MyEditorProvider: FC<MyEditorProps> = ({ children }) => {
return (
<Provider config={{ options: customOpt, fonts: customFonts }}>
{children}
</Provider>
);
};
export default MyEditorProvider;
MyEditor.tsx
import { FC } from "react";
import Editor from "react-quill-editor";
const MyEditor: FC = () => {
const { content } = useEditor();
useEffect(() => {
console.log(content);
}, [content]);
return (
<Editor height={300} />
);
};
export default MyEditor;
FAQs
This is a react typescript wrapper for [Quill JS](https://quilljs.com).
We found that @wellspr/react-quill-editor 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.