Gathering detailed insights and metrics for idist-jodit-react
Gathering detailed insights and metrics for idist-jodit-react
Gathering detailed insights and metrics for idist-jodit-react
Gathering detailed insights and metrics for idist-jodit-react
npm install idist-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.3.98
Package Id
idist-jodit-react@1.3.98
Unpacked Size
3.74 MB
Size
1.44 MB
File Count
28
NPM Version
10.8.2
Node Version
20.18.1
Published on
Dec 18, 2024
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
24
1npm install jodit-pro-react --save 2# or 3yarn add jodit-pro-react
1npm update jodit-react-pro
1import React, {useState, useRef} from 'react'; 2import JoditEditor from "jodit-pro-react"; 3 4const Example = ({}) => { 5 const editor = useRef(null) 6 const [content, setContent] = useState('') 7 8 const config = { 9 readonly: false, // all options from https://xdsoft.net/jodit/doc/, 10 uploader: { 11 url: 'https://xdsoft.net/jodit/finder/?action=fileUpload' 12 }, 13 filebrowser: { 14 ajax: { 15 url: 'https://xdsoft.net/jodit/finder/' 16 }, 17 height: 580, 18 } 19 } 20 21 return ( 22 <JoditEditor 23 ref={editor} 24 image={image} 25 value={content} 26 config={config} 27 tabIndex={1} // tabIndex of textarea 28 onBlur={newContent => setContent(newContent)} // preferred to use only this option to update the content for performance reasons 29 onChange={newContent => {}} 30 /> 31 ); 32}
This package is available under 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