A headless code editor library for Phoenix LiveView applications with a plugin system for extensibility. This code is pre-production.
- Headless Architecture - Core editing logic separate from UI concerns
- Line-Based Document Model - Efficient text manipulation with line operations
- Plugin System - Extend functionality through a simple behavior-based plugin API
- LiveView Ready - Designed for real-time collaborative editing
- Battle-Tested - 95%+ test coverage with comprehensive unit tests
- Zero Dependencies - Pure Elixir library with no external deps
Add ex_editor to your list of dependencies in mix.exs:
def deps do
[
{:ex_editor, "~> 0.1.1"}
]
enddef deps do
[
{:ex_editor, github: "thanos/ex_editor"}
]
endThen run:
mix deps.get# Create a new editor with initial content
editor = ExEditor.Editor.new(content: "Hello, World!\nThis is line 2")
# Get the current content
ExEditor.Editor.get_content(editor)
# => "Hello, World!\nThis is line 2"
# Update content
{:ok, editor} = ExEditor.Editor.set_content(editor, "New content here")
# Work with the underlying document
doc = editor.document
ExEditor.Document.line_count(doc) # => 1
ExEditor.Document.get_line(doc, 1) # => {:ok, "New content here"}# Create a document from text
doc = ExEditor.Document.from_text("line 1\nline 2\nline 3")
# Insert a new line
{:ok, doc} = ExEditor.Document.insert_line(doc, 2, "inserted line")
# Now: ["line 1", "inserted line", "line 2", "line 3"]
# Replace a line
{:ok, doc} = ExEditor.Document.replace_line(doc, 1, "updated line 1")
# Delete a line
{:ok, doc} = ExEditor.Document.delete_line(doc, 2)
# Get line count
ExEditor.Document.line_count(doc) # => 3
# Convert back to text
ExEditor.Document.to_text(doc)
# => "updated line 1\nline 2\nline 3"Create a plugin by implementing the ExEditor.Plugin behavior:
defmodule MyApp.EditorPlugins.AutoSave do
@behaviour ExEditor.Plugin
@impl true
def on_event(:handle_change, _payload, editor) do
# Auto-save logic here
IO.puts("Content changed, auto-saving...")
{:ok, editor}
end
def on_event(_event, _payload, editor) do
{:ok, editor}
end
endThen use it with your editor:
editor = ExEditor.Editor.new(
content: "Initial content",
plugins: [MyApp.EditorPlugins.AutoSave]
)
# When content changes, your plugin will be notified
{:ok, editor} = ExEditor.Editor.set_content(editor, "Updated content")
# Prints: "Content changed, auto-saving..."See the included demo application in demo/ for a complete example of integrating ExEditor with Phoenix LiveView.
The demo showcases:
- Real-time content synchronization
- Cursor position tracking
- VS Code-inspired dark theme
- JavaScript hooks for advanced features
To run the demo:
cd demo
mix setup
mix phx.serverThen visit http://localhost:4000
The ExEditor.Document module provides a line-based text representation:
- Lines are stored as a list of strings
- Line numbers are 1-indexed (line 1 is the first line)
- Supports all line ending formats (\n, \r\n, \r)
- Immutable operations return
{:ok, new_doc}or{:error, reason}
The ExEditor.Editor module manages editor state:
- Wraps a
Documentwith metadata - Coordinates plugin execution
- Handles content changes and notifications
- Provides a simple API for UI integration
Plugins implement the ExEditor.Plugin behavior:
@callback on_event(event :: atom(), payload :: map(), editor :: Editor.t()) ::
{:ok, Editor.t()} | {:error, term()}Plugins receive events for:
:handle_change- Content has changed- Custom events defined by your application
Full API documentation is available on HexDocs (when published).
You can also generate docs locally:
mix docsThen open doc/index.html in your browser.
# Run all tests
mix test
# Run with coverage
mix coveralls
# Generate HTML coverage report
mix coveralls.html# Format code
mix format
# Run static analysis
mix credo --strict
# Run security checks
mix sobelowContributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Run tests and ensure they pass (
mix test) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by the need for headless editor libraries in the Elixir ecosystem
- Built with Phoenix LiveView in mind
- Thanks to the Elixir community for feedback and support