Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork210
The Svelte Language Server, and official extensions which use it
License
sveltejs/language-tools
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Svelte Language Tools contains a library implementing the Language Server Protocol (LSP). LSP powers theVSCode extension, which is also hosted in this repository. Additionally, LSP is capable of powering plugins fornumerous other IDEs.
A.svelte
file would look something like this:
<script>letcount=$state(1);letdoubled=$derived(count*2);letquadrupled=$derived(doubled*2);functionhandleClick(){count+=1;}</script><buttononclick="{handleClick}">Count: {count}</button><p>{count} * 2 = {doubled}</p><p>{doubled} * 2 = {quadrupled}</p>
Which is a mix ofHTMLx and vanilla JavaScript (but with additional runtime behavior coming from the svelte compiler).
This repo contains the tools which provide editor integrations for Svelte files like this.
This repo usespnpm workspaces
, which TLDR means if you want to run a command in each project then you can eithercd
to that directory and run the command, or usepnpm -r [command]
.
For examplepnpm -r test
.
The language server for Svelte. Built fromUnwrittenFun/svelte-language-server and heavily inspired byVetur to become the official language server for the language.
A command line tool to check your svelte files for type errors, unused css, and more. Built fromVetur's VTI.
The official vscode extension for Svelte. Built fromUnwrittenFun/svelte-vscode to become the official vscode extension for the language.
Converts a .svelte file into a legal TypeScript file. Built fromhalfnelson/svelte2tsx to provide the auto-complete and import mapping inside the language server.
Want to see how it's transformed?Check out this REPL
flowchart LR %% IDEs VSC[IDE: VSCode + Svelte for VS Code extension] click VSC "https://github.com/sveltejs/language-tools/tree/master/packages/svelte-vscode" "Svelte for VSCode extension" %% Tools CLI[CLI: svelte-check] click CLI "https://github.com/sveltejs/language-tools/tree/master/packages/svelte-check" "A command line tool to get diagnostics for Svelte code" %% Svelte - Extensions VSC_TSSP[typescript-svelte-plugin] click VSC_TSSP "https://github.com/sveltejs/language-tools/tree/master/packages/typescript-plugin" "A TypeScript plugin for Svelte intellisense" %% Svelte - Packages SVELTE_LANGUAGE_SERVER["svelte-language-server"] SVELTE_COMPILER_SERVICE["svelte2tsx"] TS_SERVICE["TS/JS intellisense using TypeScript language service"] SVELTE_SERVICE["Svelte intellisense using Svelte compiler"] click SVELTE_LANGUAGE_SERVER "https://github.com/sveltejs/language-tools/tree/master/packages/language-server" "A language server adhering to the LSP" click SVELTE_COMPILER_SERVICE "https://github.com/sveltejs/language-tools/tree/master/packages/language-server/src/plugins/svelte" "Transforms Svelte code into JSX/TSX code" click TS_SERVICE "https://github.com/sveltejs/language-tools/tree/master/packages/language-server/src/plugins/typescript" click SVELTE_SERVICE "https://github.com/sveltejs/language-tools/tree/master/packages/language-server/src/plugins/svelte" %% External Packages HTML_SERVICE[HTML intellisense using vscode-html-languageservice] CSS_SERVICE[CSS intellisense using vscode-css-languageservice] VSC_TS[vscode-typescript-language-features] click HTML_SERVICE "https://github.com/microsoft/vscode-html-languageservice" click CSS_SERVICE "https://github.com/microsoft/vscode-css-languageservice" click VSC_TS "https://github.com/microsoft/vscode/tree/main/extensions/typescript-language-features" subgraph EMBEDDED_SERVICES[Embedded Language Services] direction LR TS_SERVICE SVELTE_SERVICE HTML_SERVICE CSS_SERVICE end VSC -- Language Server Protocol --> SVELTE_LANGUAGE_SERVER CLI -- Only using diagnostics feature --> SVELTE_LANGUAGE_SERVER VSC -- includes --> VSC_TS VSC_TS -- loads --> VSC_TSSP VSC_TSSP -- uses --> SVELTE_COMPILER_SERVICE TS_SERVICE -- uses --> SVELTE_COMPILER_SERVICE SVELTE_LANGUAGE_SERVER -- bundles --> EMBEDDED_SERVICES
More information about the internals can be foundHERE.
Pull requests are encouraged and always welcome.Pick an issue and help us out!
To install and work on these tools locally:
Make sure to uninstall the extension from the marketplace to not have it clash with the local one.
git clone https://github.com/sveltejs/language-tools.git svelte-language-toolscd svelte-language-toolspnpm installpnpm bootstrap
Do not use npm to install the dependencies, as the specific package versions in
pnpm-lock.yaml
are used to build and test Svelte.
To build all of the tools, run:
pnpm build
The tools are written inTypeScript, but don't let that put you off — it's basically just JavaScript with type annotations. You'll pick it up in no time. If you're using an editor other thanVisual Studio Code you may need to install a plugin in order to get syntax highlighting and code hints etc.
There are two ways to work on this project: either by working against an existing project or entirely through tests.
To run the developer version of both the language server and the VSCode extension:
- open the root of this repo in VSCode
- Go to the debugging panel
- Make sure "Run VSCode Extension" is selected, and hit run
This launches a new VSCode window and a watcher for your changes. In this dev window you can choose an existing Svelte project to work against. If you don't use pure Javascript and CSS, but languages like Typescript or SCSS, your project will need aSvelte preprocessor setup. When you make changes to the extension or language server you can use the command "Reload Window" in the VSCode command palette to see your changes. When you make changes tosvelte2tsx
, you first need to runpnpm build
within its folder.
You might think that as a language server, you'd need to handle a lot of back and forth between APIs, but actually it's mostly high-level JavaScript objects which are passed to thenpm module vscode-languageserver.
This means it's easy to write tests for your changes:
pnpmtest
For trickier issues, you can run the tests with a debugger in VSCode by setting a breakpoint (or addingdebugger
in the code) and launching the test in theJavaScript Debug Terminal.
Svelte is an MIT-licensed open source project with its ongoing development made possible entirely by the support of awesome volunteers. If you'd like to support their efforts, please consider:
Funds donated via Open Collective will be used for compensating expenses related to Svelte's development such as hosting costs. If sufficient donations are received, funds may also be used to support Svelte's development more directly.
- James Birtles for creating the foundation which this language server, and the extensions are built on
- Vue'sVetur language server which heavily inspires this project
- halfnelson for creating
svelte2tsx
- jasonlyu123 for his ongoing work in all areas of the language-tools
About
The Svelte Language Server, and official extensions which use it
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.