knotri
knotri

Reputation: 253

Is vscode.dev open source? What is different between monaco-editor and vscode.dev

I wanna create a website similar to https://codesandbox.io, as I see (thru google chrome dev tools) it used internally monaco-editor, but also it has files structure navigation, tabs and so on, so its more similar to https://vscode.dev, I have tried found source code of this site, but I cannot, does it private? Does codesandbox write its own separate code for managing tabs and file structure?

P.S. I talking mostly about frontend related part of it, not the backend.

Upvotes: 2

Views: 523

Answers (1)

chrisv
chrisv

Reputation: 1481

I don't know whether the source of vscode.dev is available anywhere, but have a look at openvscode-server, which does almost exactly the same:

https://github.com/gitpod-io/openvscode-server

Upvotes: 0

Related Questions