mirror for jsonrpc-ws-proxy
Go to file
dependabot[bot] 823d798661
Bump ws from 6.2.1 to 7.4.6
Bumps [ws](https://github.com/websockets/ws) from 6.2.1 to 7.4.6.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/6.2.1...7.4.6)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-29 01:03:19 +00:00
src Fix more installation issues 2018-11-15 17:16:50 -05:00
.gitignore Initial commit 2018-11-07 14:14:33 -05:00
package-lock.json Bump ws from 6.2.1 to 7.4.6 2021-05-29 01:03:19 +00:00
package.json Bump ws from 6.2.1 to 7.4.6 2021-05-29 01:03:19 +00:00
README.md Allow configuration of multiple servers by yaml 2018-11-15 14:37:12 -05:00
tsconfig.json Prepare for publishing to npm 2018-11-15 15:33:34 -05:00

Sets up a websocket proxy for any number of language servers.

Each server is run as a subprocess which is connected to by sending the client to the URL / based on a configuration file defined locally. For example, with the following defined as servers.yml:

langservers:
  python:
    - python
    - python-langserver.py
    - --stdio
  go:
    - /usr/local/bin/go
    - langserver.go

The client would connect to ws://localhost/python to get a python language server

Usage:

npm install
npm run prepare
node dist/server.js --port 3000 --languageServers servers.yml