
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.
@texditor/editor
Advanced tools
Texditor is a modern, block-based text editor written in TypeScript. It has a clean architecture and an extensible design that allows users to customize the content blocks
A modern, modular block-based text editor built with TypeScript. Featuring a clean architecture, extensible design, and customizable content blocks.
import "@texditor/editor/styles/theme.css"; // Theme variables
import "@texditor/editor/styles/editor.css"; // Core styles
import Texditor from "@texditor/editor";
const editor = new Texditor({
handle: "texditor" // Target element ID
});
<div class="editor" id="texditor"></div>
import { Code, Files, Gallery, H1, H2, H3, H4, H5, H6, List, OrderedList, Paragraph } from "@texditor/editor/blocks";
import { Undo, Redo } from "@texditor/editor/extensions";
import {
BoldTool,
ClearFormatingTool,
ItalicTool,
LinkTool,
SubscriptTool,
SuperscriptTool
} from "@texditor/editor/tools";
const editor = new Texditor({
handle: "texditor",
extensions: [Undo, Redo],
tools: [
BoldTool,
LinkTool
// Add more tools...
],
blockModels: [
Paragraph, // Default configuration
H1.setup({
// Custom configuration
placeholder: "Heading 1",
sanitizerConfig: {
elements: ["a", "sup", "sub"]
// Additional sanitizer options...
}
})
// Add more blocks...
]
});
We welcome contributions! Please feel free to submit issues or pull requests.
FAQs
Texditor is a modern, block-based text editor written in TypeScript. It has a clean architecture and an extensible design that allows users to customize the content blocks
We found that @texditor/editor 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.