DEV Community

Discussion on: Building a Code Editor for the Web - Introduction

Collapse
 
thenaman047 profile image
TheNaman047

Hey, I am looking for a way to provide code completion in Browser similar to how we get in VS Code. Currently for JS.

Can you just point me what to checkout to accomplish this.

Collapse
 
coderarchive profile image
Lu-Vuong Le πŸš€

There's a lot of different libraries for a code editor in the browser, I'll be making use of the Ace editor for these videos but what Jakub suggested is probably your best bet for what you're looking for

Collapse
 
jakcharvat profile image
Jakub Charvat

Have a look at Microsoft’s Monaco editor, it’s what powers VSCode under the hood and should be embedable in a webpage. Haven’t tried it yet though