Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@tiptap/extension-character-count
Advanced tools
@tiptap/extension-character-count is an extension for the Tiptap editor that provides character count functionality. It allows developers to easily track and display the number of characters in the editor, which can be useful for applications that require character limits or want to provide feedback to users on their text input.
Basic Character Count
This feature allows you to configure a character count limit for the Tiptap editor. The example sets a limit of 200 characters.
const characterCount = CharacterCount.configure({ limit: 200 });
Display Character Count
This feature demonstrates how to initialize the Tiptap editor with the CharacterCount extension and retrieve the current character count from the editor's content.
const editor = new Editor({ extensions: [CharacterCount], content: '<p>Hello World!</p>' }); const characterCount = editor.storage.characterCount.characters();
Character Count with Warning
This feature configures the character count extension to provide a warning when the character limit is approached. The example sets a limit of 200 characters and enables warning mode.
const characterCount = CharacterCount.configure({ limit: 200, mode: 'warning' });
react-character-counter is a React component that provides character count functionality for text inputs and textareas. It is similar to @tiptap/extension-character-count but is designed specifically for React applications and does not integrate with the Tiptap editor.
tiptap is a headless wrapper around ProseMirror – a toolkit for building rich text WYSIWYG editors, which is already in use at many well-known companies such as New York Times, The Guardian or Atlassian.
Documentation can be found on the tiptap website.
tiptap is open-sourced software licensed under the MIT license.
FAQs
font family extension for tiptap
The npm package @tiptap/extension-character-count receives a total of 151,360 weekly downloads. As such, @tiptap/extension-character-count popularity was classified as popular.
We found that @tiptap/extension-character-count demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.