forked from TypeFox/monaco-languageclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 2.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>monaco-languageclient Examples</title>
<style>
body {
font-family: Helvetica, Arial, Sans-Serif;
}
</style>
</head>
<body>
<div style="padding: 5px">
<h2>Examples</h2>
<h3>JSON language client and language server</h3>
Please execute <b><code>npm run start:example:server:json</code></b> beforehand:<br>
<a href="packages/examples/client.html">Client for Node.js Language Server</a>
<h3>Python language client and language server</h3>
Please execute <b><code>npm run start:example:server:python</code></b> beforehand:<br>
<a href="packages/examples/python.html">Client for Python Pyright Language Server</a>
<h3>Groovy language client and language server</h3>
Requires docker. Please execute <b><code>docker-compose -f ./packages/examples/resources/groovy/docker-compose.yml up -d</code></b> beforehand:<br>
<a href="packages/examples/groovy.html">Client for Groovy Language Server</a>
<h3>Langium client and language server</h3>
<a href="packages/examples/statemachine_client.html">Client & Statemachine LS (Web Worker)</a><br>
Localizations: <a href="packages/examples/statemachine_client.html?locale=de">German</a> <a href="packages/examples/statemachine_client.html?locale=fr">French</a> and <a href="packages/examples/statemachine_client.html?locale=es">Spanish</a><br>
<h3>Other examples</h3>
<a href="packages/examples/browser.html">Browser Example</a>
<br><br>
<a href="packages/examples/react.html">React Client Example</a>
<h2>Verification</h2>
<h3>Webpack</h3>
Please start <b><code>npm run start:verify:webpack</code></b> beforehand:<br>
<a href="http://localhost:8081">Web Client for Node.js Language Server (webpack build)</a>
<h3>Vite</h3>
Please start <b><code>npm run start:verify:vite</code></b> beforehand:<br>
<a href="http://localhost:8082">Web Client for Node.js Language Server (vite build)</a>
<h2>External examples</h2>
<a href="https://github.com/TypeFox/monaco-languageclient-ng-example.git">Angular Client Example</a>
</div>
</body>
</html>