File: client.html

package info (click to toggle)
node-monaco-languageclient 20230504.93ecd19-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 704 kB
  • sloc: javascript: 46; makefile: 14; sh: 3
file content (16 lines) | stat: -rw-r--r-- 415 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>

<head>
    <title>Monaco Language Client Node.js Sample</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body>
	<h2>Monaco Language Client Node.js Sample</h2>
	<div id="container" style="width:800px;height:600px;border:1px solid grey"></div>
    <script type="module" src="./src/client/main.ts"></script>
</body>

</html>