Antlr4 Editor
Overview
The goal of this project/library is to provide developers with a simple to use API to develop web compatible code editors, using only Antlr4 Grammars. Allowing for the creation of the editor and language to be more unified during the development process.
(Currently the only fully supported editor platform is codemirror at the moment)
Getting Started
npm install -S antlr4-editor
Example Generating An Editor
Generate the source files for creating a C Editor.
antlr4-editor -o src/editor -r compilationUnit samples/c/Cg4
Example Output
Run the Test Editor Application
node /src/editor/test-editor-appjs
Javascript Code of a Simple C Editor
Given that you've generated editor source code, the following code creates a simple C language code editor.
const createEditor = createEditor; const editor = ;editor; editor;editor;editor; const el = editor; // Render the editordocumentbody;
TODOS
- Improve API Documentation
- Add Ace Editor Support
- Add Monaco Editor Support
- Create Sample Editors
- Publish Sample Editors
- Create Tutorials
- Add CodeMirror Support
- Provide CLI Support