Gathering detailed insights and metrics for react-ace-builds
Gathering detailed insights and metrics for react-ace-builds
Gathering detailed insights and metrics for react-ace-builds
Gathering detailed insights and metrics for react-ace-builds
npm install react-ace-builds
Typescript
Module System
Node Version
NPM Version
54.3
Supply Chain
84
Quality
74.7
Maintenance
100
Vulnerability
99.3
License
JavaScript (98.54%)
HTML (1.3%)
CSS (0.08%)
Shell (0.08%)
Total Downloads
360,464
Last Day
141
Last Week
2,867
Last Month
12,180
Last Year
105,021
MIT License
13 Stars
802 Commits
4 Forks
38 Branches
1 Contributors
Updated on Feb 17, 2025
Latest Version
7.4.1
Package Id
react-ace-builds@7.4.1
Unpacked Size
790.34 kB
Size
157.26 kB
File Count
62
NPM Version
8.19.4
Node Version
16.20.2
Published on
Nov 06, 2023
Cumulative downloads
Total Downloads
Last Day
104.3%
141
Compared to previous day
Last Week
-13.2%
2,867
Compared to previous week
Last Month
23.1%
12,180
Compared to previous month
Last Year
28.2%
105,021
Compared to previous year
4
31
A set of react components for Ace
DEMO of React Ace-Builds Split Editor
DEMO of React Ace-Builds Diff Editor
This repository contains a fork of securingsincity/react-ace where unmaintained brace is replaced with ace-builds. This was motivated by a pull request created by @dennisoelkers.
npm install react-ace-builds
1import React from "react"; 2import { render } from "react-dom"; 3import AceEditor from "react-ace-builds"; 4import "react-ace-builds/webpack-resolver-min"; 5 6function onChange(newValue) { 7 console.log("change", newValue); 8} 9 10// Render editor 11render( 12 <AceEditor 13 mode="java" 14 theme="github" 15 onChange={onChange} 16 name="UNIQUE_ID_OF_DIV" 17 />, 18 document.getElementById("example") 19);
Checkout the example
directory for a working example using webpack.
No vulnerabilities found.