A minimal wasm demo with an in-browser editor and language server built with tower-lsp
Find a file
2024-09-01 08:05:35 -06:00
.cargo Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00
.vscode Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00
crates Update dependencies; fix breakage 2022-07-09 18:18:42 -06:00
packages/app Relicense 2024-09-01 08:05:35 -06:00
.editorconfig Import project 2022-05-29 15:43:56 -06:00
.eslintignore Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00
.eslintrc.yaml Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00
.gitignore Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00
.prettierrc.yaml Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00
Cargo.toml Enable release/production mode 2022-06-15 16:03:20 -06:00
CODE_OF_CONDUCT.md Import project 2022-05-29 15:43:56 -06:00
LICENSE-APACHE Relicense 2024-09-01 08:05:35 -06:00
LICENSE-Apache-2.0_WITH_LLVM-exception Relicense 2024-09-01 08:05:35 -06:00
LICENSE-MIT Relicense 2024-09-01 08:05:35 -06:00
Makefile.toml Update dependencies; fix breakage 2022-07-09 18:18:42 -06:00
package-lock.json Update dependencies; fix breakage 2022-07-09 18:18:42 -06:00
package.json Update dependencies; fix breakage 2022-07-09 18:18:42 -06:00
README.md Phrasing 2022-06-18 17:16:16 -06:00
rustfmt.toml Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00
tsconfig.json Implement monaco editor and lsp server with features 2022-06-14 22:26:08 -06:00

tower-lsp-web-demo

A minimal browser-hosted WASM demo for tower-lsp

Demo

You can experiment with a live demo of the example server integrated with an in-browser editor here:

https://silvanshade.github.io/tower-lsp-web-demo/

Building

cargo install cargo-make
cargo make deps
cargo make build

Running

cargo make run

Project Structure

The server implementation:

crates
├── browser                   -- entry-point for launching the server in the browser
│   └── src
│       └── lib.rs
├── language                  -- handles definitions for working with tree-sitter javascript grammar
│   └── src
│       ├── language.rs       -- handles loading the pre-compiled tree-sitter-javascript.wasm blob
│       ├── lib.rs
│       └── parser.rs         -- creates tree-sitter parsers from the loaded grammar blob
└── server
    └── src
        ├── core
        │   ├── document.rs   -- definitions for working with document related data
        │   ├── error.rs
        │   ├── session.rs    -- definitions for lsp session and related state
        │   ├── syntax.rs     -- definitions for updating syntax text area in browser
        │   └── text.rs       -- definitions for handling text and edits
        ├── core.rs
        ├── handler.rs        -- definitions for various feature handlers
        ├── lib.rs
        └── server.rs         -- definitions for the lsp server and impl of tower-lsp trait

The webapp and client implementation for wiring up the Monaco editor to  communicate with the server:

packages
└── app
    └── src
        ├── app.ts            -- the browser app which launches the client and server and displays the user interface
        ├── client.ts         -- definitions for the lsp client
        ├── codec             -- definitions for encoding and decoding/demuxing messages between the client and server
        │   ├── bytes.ts      -- utilities for working with Uint8Array
        │   ├── demuxer.ts    -- demuxer for splitting output from server into streams of notifications, requests, and responses
        │   ├── headers.ts    -- utilities for working with http headers
        │   ├── map.ts        -- map for storing responses from server yet to be processed (fed by demuxer)
        │   └── queue.ts      -- promise based queue used for storing notifications and requests
        ├── index.ts
        ├── language.ts       -- definition for the javascript language (e.g., language id, extensions, mime, etc.)
        ├── queue.ts          -- promise based queue structure
        ├── server.ts         -- prepares client->server and client<-server web streams and launches tower-lsp server
        └── tracer.ts         -- utilities for tracing JSON-RPC messages and displaying in browser interface