
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.
@mindfiredigital/react-text-igniter
Advanced tools
A Lightweight , powerful and intuitive HTML Editor built with React.js.
Experience a Lightweight , powerful and intuitive HTML Editor built with React.js.
The @mindfiredigital/react-text-igniter is a tool that allows developers to integrate TextIgniter using React.
Click the button below to open the project on StackBlitz.
To install the @mindfiredigital/react-text-igniter npm package in your project, use the following command:
npm install @mindfiredigital/react-text-igniter
import { TextIgniter } from "@mindfiredigital/react-text-igniter";
import React, { useRef } from "react";
export default function App() {
const editorRef = useRef();
// define features
const features = [
"heading",
"bold",
"italic",
"underline",
"orderedList",
"unorderedList",
"justifyLeft",
"justifyCenter",
"justifyRight",
"createLink",
"insertImage",
"superscript",
"subscript",
"table",
"layout",
];
return <TextIgniter ref={editorRef} features={features} height={"400px"} />;
}
import { TextIgniter } from "@mindfiredigital/react-text-igniter";
import React, { useRef } from "react";
export default function App() {
const editorRef = useRef();
// define features
const features = [
"heading",
"bold",
"italic",
"underline",
"orderedList",
"unorderedList",
"justifyLeft",
"justifyCenter",
"justifyRight",
"createLink",
"insertImage",
"superscript",
"subscript",
"table",
"layout",
];
// get HTML content
const handleGetHtmlContent = () => {
console.log("HTML:", editorRef.current.getHtml());
};
// get JSON content
const handleGetJsonContent = () => {
console.log("JSON:", editorRef.current.getJson());
};
return (
<>
<TextIgniter ref={editorRef} features={features} height={"400px"} />
<button onClick={handleGetHtmlContent}>check html</button>
<button onClick={handleGetJsonContent}>check Json</button>
</>
);
}
We welcome contributions from the community. If you'd like to contribute to the react-text-igniter npm package, please follow our Contributing Guidelines.
Copyright (c) Mindfire Digital llp. All rights reserved.
Licensed under the MIT license.
FAQs
A Lightweight , powerful and intuitive HTML Editor built with React.js.
We found that @mindfiredigital/react-text-igniter demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.