
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
react-ace-wrapper-2
Advanced tools
A react wrapper component for Ace / Brace code editor.
This is an enhanced fork of react-ace package. Main difference is that this package publishes ES5 code that can be required without any pre-processing. This package works equally fine with both Browserify and Webpack.
npm install react-ace-wrapper
var React = require('react');
var AceEditor = require('react-ace-wrapper');
require('brace/mode/java');
require('brace/theme/github');
function onChange(newValue) {
console.log('change',newValue)
}
// render a first
React.render(
<AceEditor
mode="java"
theme="github"
onChange={onChange}
name="UNIQUE_ID_OF_DIV"
/>,
document.getElementById('example')
);
| Prop | Description |
|---|---|
| name | Unique Id to be used for the editor |
| mode | Language for parsing and code highlighting |
| theme | theme to use |
| height | CSS value for height |
| width | CSS value for width |
| fontSize | pixel value for font-size |
| showGutter | boolean |
| showPrintMargin | boolean |
| highlightActiveLine | boolean |
| selectFirstLine | boolean |
| wrapEnabled | boolean |
| readOnly | boolean |
| maxLines | Maximum number of lines to be displayed |
| defaultValue | String value you want to populate in the code highlighter upon creation |
| value | String value you want to populate in the code highlighter (overrides defaultValue if present) |
| onLoad | Function onLoad |
| onChange | function that occurs on document change it has 1 argument value. see the example above |
All modes and themes should be required through brace directly. Browserify will grab these modes / themes through brace and will be available at run time. See the example above. This prevents bloating the compiled javascript with extra modes and themes for your application.
FAQs
A React wrapper component for Ace Editor
We found that react-ace-wrapper-2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.