Gathering detailed insights and metrics for react-ace
Gathering detailed insights and metrics for react-ace
Gathering detailed insights and metrics for react-ace
Gathering detailed insights and metrics for react-ace
npm install react-ace
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
4,090 Stars
1,637 Commits
605 Forks
31 Watching
130 Branches
112 Contributors
Updated on 27 Nov 2024
Minified
Minified + Gzipped
TypeScript (77.48%)
JavaScript (21.48%)
HTML (0.98%)
CSS (0.06%)
Cumulative downloads
Total Downloads
Last day
9.4%
84,254
Compared to previous day
Last week
15.7%
475,138
Compared to previous week
Last month
9.6%
1,811,709
Compared to previous month
Last year
9.5%
20,263,171
Compared to previous year
35
A set of react components for Ace
NOTE FOR VERSION 8! : We have stopped support for Brace and now use Ace-builds. Please read the documentation on how to migrate. Examples are being updated.
DEMO of React Ace Split Editor
npm install react-ace ace-builds
yarn add react-ace ace-builds
1import React from "react"; 2import { render } from "react-dom"; 3import AceEditor from "react-ace"; 4 5import "ace-builds/src-noconflict/mode-java"; 6import "ace-builds/src-noconflict/theme-github"; 7import "ace-builds/src-noconflict/ext-language_tools"; 8 9function onChange(newValue) { 10 console.log("change", newValue); 11} 12 13// Render editor 14render( 15 <AceEditor 16 mode="java" 17 theme="github" 18 onChange={onChange} 19 name="UNIQUE_ID_OF_DIV" 20 editorProps={{ $blockScrolling: true }} 21 />, 22 document.getElementById("example") 23);
Checkout the example
directory for a working example using webpack.
How to add modes, themes and keyboard handlers
Support us with a monthly donation and help us continue our activities. [Become a backer]
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
1 existing vulnerabilities detected
Details
Reason
Found 2/4 approved changesets -- score normalized to 5
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2024-11-18
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