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
|
<!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">
<h1>Examples</h1>
Please execute <b><code>npm run start:example:server</code></b> beforehand:<br>
<a href="packages/examples/main/client.html">Web Client for Node.js Language Server</a>
<br><br>
<a href="packages/examples/main/langium_wwls.html">Web Client & Langium Web Worker Language Server Example</a>
<br><br>
<a href="packages/examples/main/browser.html">Browser Example</a>
<br><br>
<a href="packages/examples/main/react.html">React Client Example</a>
<h1>Verification</h1>
<h2>Webpack</h2>
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>
<br>
<h2>Vite</h2>
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>
<br>
<h1>Additional external examples</h1>
<a href="https://github.com/TypeFox/monaco-languageclient-ng-example.git">Angular Client Example</a>
<br>
</div>
</body>
</html>
|