Gathering detailed insights and metrics for react-ace
Gathering detailed insights and metrics for react-ace
npm install react-ace
Typescript
Module System
Node Version
NPM Version
69.2
Supply Chain
94.4
Quality
84.9
Maintenance
100
Vulnerability
87.3
License
TypeScript (77.48%)
JavaScript (21.48%)
HTML (0.98%)
CSS (0.06%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
98,080,809
Last Day
72,115
Last Week
482,969
Last Month
1,965,507
Last Year
21,112,104
MIT License
4,119 Stars
1,642 Commits
608 Forks
31 Watchers
138 Branches
112 Contributors
Updated on Feb 14, 2025
Minified
Minified + Gzipped
Latest Version
14.0.1
Package Id
react-ace@14.0.1
Unpacked Size
1.92 MB
Size
437.42 kB
File Count
56
NPM Version
10.8.2
Node Version
20.18.2
Published on
Feb 11, 2025
Cumulative downloads
Total Downloads
Last Day
-5.8%
72,115
Compared to previous day
Last Week
2.8%
482,969
Compared to previous week
Last Month
31.8%
1,965,507
Compared to previous month
Last Year
15.4%
21,112,104
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
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
0 existing vulnerabilities detected
Reason
5 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
Found 2/6 approved changesets -- score normalized to 3
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 2025-02-10
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