
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.
makzontexteditor
Advanced tools
A customizable rich text editor built with the window select API, React, and Tailwind CSS. It provides a simple and intuitive interface for users to create and format text content with ease.
Makzontexteditor is a modern, customizable, and lightweight rich text editor built with React, TypeScript, and Tailwind CSS. It offers intuitive formatting options, media embedding, and full control over your content creation workflow — perfect for blogs, CMS, note apps, and publishing platforms.
npm install makzontexteditor
or if you're using Yarn:
yarn add makzontexteditor
import React from 'react';
import { Makzontexteditor } from 'makzontexteditor';
import 'makzontexteditor/styles.css'; // Optional if the editor includes default styles
function App() {
return (
<div className="p-4">
<Makzontexteditor />
</div>
);
}
export default App;
To work properly, make sure your project includes the following:
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0",
"tailwindcss": "^3.4.3",
"react-icons": "^5.5.0",
"react-router-dom": "^6 || ^7"
}
This project uses Vite for development and Tsup for packaging:
yarn dev # Run demo locally
yarn build # Build the package with tsup
yarn demo-build # Build the demo app separately
yarn preview # Preview the demo build
yarn lint # Run linter
Full props documentation will be added soon. The editor is designed to be flexible and highly customizable.
content path:If you are using TailwindCSS in your project, make sure to include the editor in your Tailwind config's content array so styles are properly applied:
// tailwind.config.js
import path from 'path';
export default {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
path.join(__dirname, 'node_modules', 'makzontexteditor', '**/*.{js,ts,jsx,tsx}')
],
theme: {
extend: {},
},
plugins: [],
};
## 🖼 Preview

---
## 📜 License
This project is licensed under the MIT License.
You're free to use, modify, and distribute this package in personal or commercial projects. Attribution is appreciated but not required.
---
## 🙌 Author
Created by Henry Orji. If you like this project, feel free to ⭐ it and contribute!
---
## 📮 Feedback / Issues
Have a suggestion or found a bug? [Open an issue](https://github.com/henrygad/makzontexteditor.git) or submit a PR.
---
## 🔮 Roadmap
-
FAQs
A customizable rich text editor built with the window select API, React, and Tailwind CSS. It provides a simple and intuitive interface for users to create and format text content with ease.
We found that makzontexteditor demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.