C++ with WebWorker #434
Unanswered
AlphaNecron
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Hi @AlphaNecron it is possible to run a LSP server in a web worker. This is what done in the browser-lsp example: https://github.com/TypeFox/monaco-languageclient/tree/main/packages/examples/browser-lsp But, the LSP code must be written in something that can be executed in the context of a web worker (JavaScript or WASM). |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm intending to create an editor for C++ online, but without a local LSP server. Is it possible to run a language server in the web browser with WebWorker?
Beta Was this translation helpful? Give feedback.
All reactions