A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/unifiedjs/unified-language-server below:

unifiedjs/unified-language-server: Language server for content, using @unifiedjs

Create a language server based on unified ecosystems.

This package exports a function which can be used to create a language server based on unified processors. It can do the following:

unified is a project that validates and transforms content with abstract syntax trees (ASTs). unified-engine is an engine to process multiple files with unified using configuration files. language server is a standardized language independent way for creating editor integrations.

This package is useful when you want to create a language server for an existing unified ecosystem. Ideally this should follow the same rules as a CLI for this ecosystem created using unified-args. The resulting package may then be used to create plugins for this ecosystem for various editors.

This package is ESM only. In Node.js (version 16.0+), install with npm:

npm install unified-language-server

Let’s say you want to create a language server for remark.

Create a file names package.json with the following content:

{
  "name": "remark-language-server",
  "version": "1.0.0",
  "bin": "./index.js",
  "type": "module",
  "dependencies": {
    "remark": "^14.0.0",
    "unified-language-server": "^1.0.0"
  }
}

Then create index.js with the following content:

import {remark} from 'remark'
import {createUnifiedLanguageServer} from 'unified-language-server'

process.title = 'remark-language-server'

createUnifiedLanguageServer({
  ignoreName: '.remarkignore',
  packageField: 'remarkConfig',
  pluginPrefix: 'remark',
  rcName: '.remarkrc',
  processorName: 'remark',
  processorSpecifier: 'remark',
  defaultProcessor: remark
})

That’s all there is to it. You have just created a language server for remark.

createUnifiedLanguageServer(options)

Create a language server for a unified ecosystem.

Configuration for unified-engine and the language server.

The package ID of the expected processor (string, required, example: 'remark'). Will be loaded from the local workspace.

options.processorSpecifier

The specifier to get the processor on the resolved module (string, optional, default: 'default'). For example, remark uses the specifier remark to expose its processor and a default export can be requested by passing 'default' (the default).

Optional fallback processor to use if processorName can’t be found locally in node_modules (Unified, optional). This can be used to ship a processor with your package, to be used if no processor is found locally. If this isn’t passed, a warning is shown if processorName can’t be found.

Name of ignore files to load (string, optional).

Property at which configuration can be found in package.json files (string, optional).

Optional prefix to use when searching for plugins (string, optional).

Plugins to use by default (Array|Object, optional).

Name of configuration files to load (string, optional).

For examples, see the following projects:

This package is fully typed with TypeScript. It exports an Options type, which specifies the interface of the accepted options.

Clients should watch the unified-engine config files and notify the language server if a change was made.

Language servers created using this package implement the following language server features:

Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 16.0+. Our projects sometimes work with older versions, but this is not guaranteed.

This project uses vscode-languageserver 7, which implements language server protocol 3.17.0. It should work anywhere where LSP 3.6.0 or later is implemented.

See contributing.md in unifiedjs/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

MIT © @aecepoglu


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4