Gathering detailed insights and metrics for react-ace-new
Gathering detailed insights and metrics for react-ace-new
Gathering detailed insights and metrics for react-ace-new
Gathering detailed insights and metrics for react-ace-new
npm install react-ace-new
Typescript
Module System
Node Version
NPM Version
68.7
Supply Chain
95.1
Quality
73.5
Maintenance
100
Vulnerability
99.3
License
TypeScript (74.42%)
JavaScript (23.55%)
HTML (1.96%)
CSS (0.06%)
Total Downloads
711
Last Day
1
Last Week
2
Last Month
17
Last Year
97
MIT License
4,172 Stars
1,653 Commits
608 Forks
30 Watchers
138 Branches
112 Contributors
Updated on Jul 30, 2025
Latest Version
6.1.5
Package Id
react-ace-new@6.1.5
Unpacked Size
2.00 MB
Size
460.96 kB
File Count
61
NPM Version
5.3.0
Node Version
8.9.3
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-66.7%
2
Compared to previous week
Last Month
112.5%
17
Compared to previous month
Last Year
3.2%
97
Compared to previous year
27
A set of react components for Ace / Brace
DEMO of React Ace Split Editor
npm install react-ace
1import React from 'react'; 2import { render } from 'react-dom'; 3import brace from 'brace'; 4import AceEditor from 'react-ace'; 5 6import 'brace/mode/java'; 7import 'brace/theme/github'; 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.