0.1.0 • Published 9 months ago

@cmshiki/editor v0.1.0

Weekly downloads
-
License
-
Repository
github
Last release
9 months ago

ShikiEditor

WIP!

ShikiEditor is a code editor. It's based on codemirror and shiki. If you're looking for a lightweight code editor with syntax highlighting similar to vscode, then this one's for you. It relies on @cmshiki/shiki.

Usage

import { ShikiEditor } from '@cmshiki/editor';

const editor = new ShikiEditor({
  doc: 'console.log("Hello, world!");'
});

editor.setValue('console.log("Hello, world!");');