Is it possible to develop a new backend server like Golang? #6130
Replies: 1 comment 3 replies
-
It should be possible to use a different language. We pass the
web socket to VS Code via Node's IPC so we would need some way to
do the same in Golang. No need to port any protocol; we just need
to hook up the web socket to the VS Code process (well and pass
through any other HTTP requests as well).
I am not sure how much value there would be in doing this though;
code-server is a pretty thin wrapper around VS Code which itself
of course uses Node so most everything would still be Node anyway.
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
liweijian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It sounds a lot like we are using TypeScript+Node as our backend server:
https://github.com/coder/code-server/blob/main/src/node/main.ts
I was wondering if it is possible to develop a new backend server using another language, like Golang? Is the protocol easy to port to Golang?
Beta Was this translation helpful? Give feedback.
All reactions