Socket
Book a DemoInstallSign in
Socket

react-ace-wrapper-2

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-ace-wrapper-2

A React wrapper component for Ace Editor

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

React Ace Wrapper

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.

Install

npm install react-ace-wrapper

Usage

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')
);

Available Props

PropDescription
nameUnique Id to be used for the editor
modeLanguage for parsing and code highlighting
themetheme to use
heightCSS value for height
widthCSS value for width
fontSizepixel value for font-size
showGutterboolean
showPrintMarginboolean
highlightActiveLineboolean
selectFirstLineboolean
wrapEnabledboolean
readOnlyboolean
maxLinesMaximum number of lines to be displayed
defaultValueString value you want to populate in the code highlighter upon creation
valueString value you want to populate in the code highlighter (overrides defaultValue if present)
onLoadFunction onLoad
onChangefunction that occurs on document change it has 1 argument value. see the example above

Modes and Themes

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.

Keywords

ace

FAQs

Package last updated on 30 Nov 2015

Did you know?

Socket

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.

Install

Related posts