A simple text input that emulates a code editor in the browser.
npm install svelte-code-input
<script>
import CodeEditor from "svelte-code-input/CodeEditor.svelte"
import { writable } from "svelte/store"
const codeStore = writable("");
</script>
<label for="code">My Code Input</label>
<CodeEditor name="code" store={codeStore}/>
Contributing docs in the works