react-ace

WebJar for react-ace

License

License

MIT
Categories

Categories

React User Interface Web Frameworks
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

react-ace
Last Version

Last Version

4.4.0
Release Date

Release Date

Type

Type

jar
Description

Description

react-ace
WebJar for react-ace
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/securingsincity/react-ace

Download react-ace

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/react-ace/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>react-ace</artifactId>
    <version>4.4.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/react-ace/
implementation 'org.webjars.npm:react-ace:4.4.0'
// https://jarcasting.com/artifacts/org.webjars.npm/react-ace/
implementation ("org.webjars.npm:react-ace:4.4.0")
'org.webjars.npm:react-ace:jar:4.4.0'
<dependency org="org.webjars.npm" name="react-ace" rev="4.4.0">
  <artifact name="react-ace" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='react-ace', version='4.4.0')
)
libraryDependencies += "org.webjars.npm" % "react-ace" % "4.4.0"
[org.webjars.npm/react-ace "4.4.0"]

Dependencies

compile (4)

Group / Artifact Type Version
org.webjars.npm : brace jar [0.10.0,0.11)
org.webjars.npm : lodash.isequal jar [4.1.1,5)
org.webjars.npm : opencollective jar [1.0.3,2)
org.webjars.npm : prop-types jar [15.5.8,16)

Project Modules

There are no modules declared in this project.

React-Ace

logo

Backers on Open Collective Sponsors on Open Collective Greenkeeper badge

npm version Build Status CDNJS Coverage Status

Buy Me A Coffee

A set of react components for Ace

NOTE FOR VERSION 8! : We have stopped support for Brace and now use Ace-builds. Please read the documentation on how to migrate. Examples are being updated.

DEMO of React Ace

DEMO of React Ace Split Editor

DEMO of React Ace Diff Editor

Install

npm install react-ace ace-builds

yarn add react-ace ace-builds

Basic Usage

import React from "react";
import { render } from "react-dom";
import AceEditor from "react-ace";

import "ace-builds/src-noconflict/mode-java";
import "ace-builds/src-noconflict/theme-github";

function onChange(newValue) {
  console.log("change", newValue);
}

// Render editor
render(
  <AceEditor
    mode="java"
    theme="github"
    onChange={onChange}
    name="UNIQUE_ID_OF_DIV"
    editorProps={{ $blockScrolling: true }}
  />,
  document.getElementById("example")
);

Examples

Checkout the example directory for a working example using webpack.

Documentation

Ace Editor

Split View Editor

Diff Editor

How to add modes, themes and keyboard handlers

Frequently Asked Questions

Migrate to version 8

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

Versions

Version
4.4.0
4.1.0
3.5.0
3.4.1
3.1.0