Gathering detailed insights and metrics for @nonamegeorge/jodit-react
Gathering detailed insights and metrics for @nonamegeorge/jodit-react
Gathering detailed insights and metrics for @nonamegeorge/jodit-react
Gathering detailed insights and metrics for @nonamegeorge/jodit-react
npm install @nonamegeorge/jodit-react
Typescript
Module System
Node Version
NPM Version
TypeScript (93.92%)
JavaScript (6.08%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
391 Stars
447 Commits
128 Forks
8 Watchers
3 Branches
9 Contributors
Updated on Jul 11, 2025
Latest Version
1.0.18
Package Id
@nonamegeorge/jodit-react@1.0.18
Unpacked Size
25.77 kB
Size
9.42 kB
File Count
23
NPM Version
8.19.4
Node Version
16.20.2
Published on
Dec 22, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
27
React wrapper for Jodit
Jodit React PRO it is an extended version of Jodit React with the same API, but with a lot more features.
1npm install jodit-react --save
1npm update jodit-react
1npm install --dev 2npm run demo
and open
http://localhost:4000/
1import React, { useState, useRef, useMemo } from 'react'; 2import JoditEditor from 'jodit-react'; 3 4const Example = ({ placeholder }) => { 5 const editor = useRef(null); 6 const [content, setContent] = useState(''); 7 8 const config = useMemo( 9 { 10 readonly: false, // all options from https://xdsoft.net/jodit/docs/, 11 placeholder: placeholder || 'Start typings...' 12 }, 13 [placeholder] 14 ); 15 16 return ( 17 <JoditEditor 18 ref={editor} 19 value={content} 20 config={config} 21 tabIndex={1} // tabIndex of textarea 22 onBlur={newContent => setContent(newContent)} // preferred to use only this option to update the content for performance reasons 23 onChange={newContent => {}} 24 /> 25 ); 26};
You can use all Jodit features and write your own plugin for example.
1import JoditEditor, { Jodit } from '../../src/'; 2 3/** 4 * @param {Jodit} jodit 5 */ 6function preparePaste(jodit) { 7 jodit.e.on( 8 'paste', 9 e => { 10 if (confirm('Change pasted content?')) { 11 jodit.e.stopPropagation('paste'); 12 jodit.s.insertHTML( 13 Jodit.modules.Helpers.getDataTransfer(e) 14 .getData(Jodit.constants.TEXT_HTML) 15 .replace(/a/g, 'b') 16 ); 17 return false; 18 } 19 }, 20 { top: true } 21 ); 22} 23Jodit.plugins.add('preparePaste', preparePaste); 24 25//... 26return <JoditEditor/>;
This package is available under MIT
License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
6 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More