
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.