
Security News
/Research
Compromised Injective SDK npm Package Exfiltrates Wallet Keys and Mnemonics
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.
@codemirror/lsp-client
Advanced tools
[ WEBSITE | DOCS | ISSUES | FORUM | CHANGELOG ]
This package implements a language server protocol (LSP) client for the CodeMirror code editor.
The project page has more information, a number of examples and the documentation.
This code is released under an MIT license.
We aim to be an inclusive, welcoming community. To make that explicit, we have a code of conduct that applies to communication around the project.
There are various ways to run a language server and connect it to a
web page. You can run it on the server and proxy it through a web
socket, or, if it is written in JavaScript or can be compiled to WASM,
run it directly in the client. The @codemirror/lsp-client package
talks to the server through a (Transport)
object, which exposes a small interface for sending and receiving JSON
messages.
Responsibility for how to actually talk to the server, how to connect and to handle disconnects are left to the code that implements the transport.
This example uses a crude transport that doesn't handle errors at all.
import {Transport, LSPClient, languageServerExtensions} from "@codemirror/lsp-client"
import {basicSetup, EditorView} from "codemirror"
import {typescriptLanguage} from "@codemirror/lang-javascript"
function simpleWebSocketTransport(uri: string): Promise<Transport> {
let handlers: ((value: string) => void)[] = []
let sock = new WebSocket(uri)
sock.onmessage = e => { for (let h of handlers) h(e.data.toString()) }
return new Promise(resolve => {
sock.onopen = () => resolve({
send(message: string) { sock.send(message) },
subscribe(handler: (value: string) => void) { handlers.push(handler) },
unsubscribe(handler: (value: string) => void) { handlers = handlers.filter(h => h != handler) }
})
})
}
let transport = await simpleWebSocketTransport("ws://host:port")
let client = new LSPClient({extensions: languageServerExtensions()}).connect(transport)
new EditorView({
extensions: [
basicSetup,
typescriptLanguage,
client.plugin("file:///some/file.ts"),
],
parent: document.body
})
FAQs
Language server protocol client for CodeMirror
The npm package @codemirror/lsp-client receives a total of 12,158 weekly downloads. As such, @codemirror/lsp-client popularity was classified as popular.
We found that @codemirror/lsp-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.

Security News
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.