lsp: Haskell library for the Microsoft Language Server Protocol

[ development, library, mit ] [ Propose Tags ]

An implementation of the types, and basic message server to allow language implementors to support the Language Server Protocol for their specific language.

An example of this is for Haskell via the Haskell Language Server, at https://github.com/haskell/haskell-language-server


[Skip to Readme]

Modules

[Index] [Quick Jump]

Flags

Automatic Flags
NameDescriptionDefault
demo

Build the demo executables

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 1.0.0.0, 1.0.0.1, 1.1.0.0, 1.1.1.0, 1.2.0.0, 1.2.0.1, 1.4.0.0, 1.5.0.0, 1.6.0.0, 2.0.0.0, 2.1.0.0, 2.2.0.0, 2.3.0.0, 2.4.0.0
Change log ChangeLog.md
Dependencies aeson (>=2 && <2.3), async (>=2.2 && <2.3), attoparsec (>=0.14 && <0.15), base (>=4.11 && <5), bytestring (>=0.10 && <0.13), co-log-core (>=0.3 && <0.4), containers (>=0.6 && <0.7), data-default (>=0.7 && <0.8), directory (>=1.3 && <1.4), exceptions (>=0.10 && <0.11), filepath (>=1.4 && <1.6), hashable (>=1.4 && <1.5), lens (>=5.1 && <5.3), lens-aeson (>=1.2 && <1.3), lsp, lsp-types (>=2.1 && <2.2), mtl (>=2.2 && <2.4), prettyprinter (>=1.7 && <1.8), random (>=1.2 && <1.3), row-types (>=1.0 && <1.1), sorted-list (>=0.2.1 && <0.3), stm (>=2.5 && <2.6), text (>=1 && <2.2), text-rope (>=0.2 && <0.3), transformers (>=0.5 && <0.7), unliftio-core (>=0.2 && <0.3), unordered-containers (>=0.2 && <0.3), uuid (>=1.3) [details]
License MIT
Copyright Alan Zimmerman, 2016-2021
Author Alan Zimmerman
Maintainer alan.zimm@gmail.com
Category Development
Home page https://github.com/haskell/lsp
Source repo head: git clone https://github.com/haskell/lsp
Uploaded by michaelpj at 2024-02-05T14:23:04Z
Distributions Arch:1.6.0.0, LTSHaskell:2.3.0.0, NixOS:2.3.0.0, Stackage:2.4.0.0
Reverse Dependencies 38 direct, 13 indirect [details]
Executables lsp-demo-simple-server, lsp-demo-reactor-server
Downloads 10999 total (317 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2024-02-05 [all 1 reports]

Readme for lsp-2.4.0.0

[back to package description]

lsp

lsp is a library for building language servers, handling:

  • JSON-RPC transport
  • Keeping track of the document state in memory with the Virtual File System (VFS)
  • Responding to notifications and requests via handlers
  • Setting the server capabilities in the initialize request based on registered handlers
  • Dynamic registration of capabilities
  • Cancellable requests and progress notifications
  • Publishing and flushing of diagnostics

It is part of the lsp family of packages, along with lsp-test and lsp-types

For more information, check https://github.com/haskell/lsp/blob/master/README.md