React Ace

React Ace Component

Github星跟踪图

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

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]










主要指标

概览
名称与所有者securingsincity/react-ace
主编程语言TypeScript
编程语言HTML (语言数: 4)
平台
许可证MIT License
所有者活动
创建于2014-11-29 05:15:14
推送于2025-05-02 10:26:42
最后一次提交2020-07-06 09:53:46
发布数95
最新版本名称v14.0.1 (发布于 )
第一版名称1.1.2 (发布于 2015-03-08 18:58:50)
用户参与
星数4.2k
关注者数30
派生数609
提交数1.6k
已启用问题?
问题数500
打开的问题数198
拉请求数775
打开的拉请求数27
关闭的拉请求数779
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?