23
How I made my own text editor like VSCode
Hello World!
I am back with a new article π....Today, I am going to talk about the editor which I have made π tiny editor; which is very helpful to write code on web browser and many more..
So, How I made?

<ControlledEditor
onBeforeChange={handleChange}
value={value}
className="code-mirror-wrapper"
options={{
lineWrapping: true,
lint: true,
mode: language,
theme: 'material',
lineNumbers: true,
autoCloseBrackets: true,
matchBrackets: true,
autoCloseTags: true,
matchTags: true,
}}
/>

<Editor
defaultLanguage="javascript"
theme="vs-dark"
value={js}
onChange={setJs}
className='editor'
/>
iframe
<iframe
srcDoc={srcDoc}
title="output"
sandbox="allow-forms allow-popups allow-scripts allow-same-origin allow-modals"
frameBorder="0"
width="100%"
height="100%"
/>

This is how I made my own text editor like VSCODE.
I have made a video on showcasing it, so make sure to check out the video and don't forget to check out my Youtube Channel
23