Start with presets when you want a complete editor quickly.
Use this quickstart when you need toolbar, editing surface, and source modes without building custom UI.
npm install @lyfie/luthorimport '@lyfie/luthor/styles.css';
import { ExtensiveEditor } from '@lyfie/luthor';
export function App() {
return (
<ExtensiveEditor
placeholder="Write anything..."
availableModes={['visual-editor', 'json', 'markdown', 'html']}
/>
);
}