How implement language server with the worker api instead of Nodejs environment? #349
Answered
by
CGNonofr
abdalla-rko
asked this question in
Q&A
-
I'm trying to implement a language server without using a server (Nodejs environment), like vscode web. |
Beta Was this translation helpful? Give feedback.
Answered by
CGNonofr
May 13, 2022
Replies: 1 comment 6 replies
-
Your LSP implementation needs to be written in javascript and run inside a worker, then it'll communicate through I don't think there is many available implementations for the moment, which language server do you want to use? |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
abdalla-rko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see https://code.visualstudio.com/api/extension-guides/web-extensions#language-server-protocol-in-web-extensions
Your LSP implementation needs to be written in javascript and run inside a worker, then it'll communicate through
sendMessage
I don't think there is many available implementations for the moment, which language server do you want to use?