-
Notifications
You must be signed in to change notification settings - Fork 4
/
info.html
131 lines (111 loc) · 5.12 KB
/
info.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#494949">
<link rel="icon" type="image/x-icon" href="noVNC/app/images/icons/novnc.ico">
<link rel="stylesheet" href="css/info.css" />
<script src="menu.js"></script>
<title>noVNC</title>
</head>
<body include-html="top_bar.html">
<div id="description">
<p class="wrapper">
<strong>noVNC, the open-source VNC browser client </strong>
- noVNC is a VNC client JavaScript library as well as an application
built on top of that library. noVNC runs well in any modern browser,
including mobile browsers (iOS and Android).
<br/><br/>
<a href="https://www.w3.org/html/logo/">
<img src="img/html5-badge-h-connectivity-graphics.png"
alt="HTML5 Powered with Connectivity / Realtime, and Graphics, 3D & Effects"
title="HTML5 Powered with Connectivity / Realtime, and Graphics, 3D & Effects"
height="32" align="center"/>
</a>
HTML5
<a href="https://dev.w3.org/html5/websockets/">WebSockets</a> and
<a href="https://dev.w3.org/html5/2dcontext-LC/">Canvas</a>
</p>
</div>
<div id="content" class="wrapper">
<h1>Try it!</h1>
<p>An online version of the noVNC client is available
<a href="noVNC/vnc.html">HERE</a>.</p>
<p>Check out these <a href="screenshots.html">videos and screenshots</a>
for examples of how noVNC looks.</p>
<h1>Community</h1>
<p>noVNC is an active open-source project with numerous users, integrators
and developers. If you want to contribute, please read our
<a href="https://github.com/novnc/noVNC/wiki/Contributing">
contributing guidelines</a> and don't hesitate to submit a pull
request on <a href="https://github.com/novnc/noVNC/pulls">GitHub</a>.
</p>
<p>Use our
<a href="https://github.com/novnc/noVNC/issues">issue tracker</a>
if you wish to report a bug. But before opening an issue, please see if
someone else already had the same problem before. You can also join in
on the discussion in the
<a href="https://groups.google.com/forum/?fromgroups#!forum/novnc">
noVNC discussion group</a>.
</p>
<p>There are many companies/projects that have integrated noVNC including
<a href="https://www.openstack.org">OpenStack</a>,
<a href="https://opennebula.org">OpenNebula</a>,
<a href="https://libvncserver.github.io">LibVNCServer</a>, and
<a href="https://www.cendio.com/products/thinlinc/">ThinLinc</a>.
See
<a href="https://github.com/novnc/noVNC/wiki/Projects-and-companies-using-noVNC">
this wiki page</a>
for a more complete list with additional info and links.
</p>
<p>If you want to integrate the core noVNC library into your project, you
should check out the
<a href="https://github.com/novnc/noVNC/blob/master/docs/API.md">
API documentation</a>. To easily get the core library, you can use
<a href="https://www.npmjs.com/">NPM</a>:
<pre>npm install @novnc/novnc</pre>
Please note that what's available on NPM is <b>not</b> the full noVNC
client; it's only the core modules/library and is lacking a user
application.
</p>
<h1>Install</h1>
<p>noVNC requires a browser with support for modern features; it works
on all major browsers. Note that noVNC doesn't work in IE. See the
<a href="https://github.com/novnc/noVNC#browser-requirements">README</a>
for more details.
</p>
<p>Get noVNC by downloading one of the archives from the
<a href="https://github.com/novnc/noVNC/releases">release page</a>.</p>
<p>Run a VNC server, run a WebSocket proxy that points to the VNC server,
load the page, and connect! See the quick-start instructions in the
project
<a href="https://github.com/novnc/noVNC/blob/master/README.md#quick-start">
README</a> for more details.
</p>
<h1>License</h1>
<p><a href="https://www.mozilla.org/MPL/2.0/">MPL-2.0</a></p>
<p>See the project
<a href="https://github.com/novnc/noVNC/blob/master/LICENSE.txt">
LICENSE</a> for more details.
</p>
<h1>Notable Authors and Contributors</h1>
<ul>
<li><strong>Creator of noVNC</strong>
: Joel Martin (github@martintribe.org)</li>
<li><strong>Current noVNC core team</strong>
: Samuel Mannehed, Pierre Ossman</li>
<li><strong>UI and Icons</strong>
: Pierre Ossman, Chris Gordon</li>
<li><strong>Original Logo</strong>
: Michael Sersen</li>
<li><strong>tight encoding</strong>
: Michael Tinglof (Mercuri.ca)</li>
</ul>
<div class="footer">
get the source code on GitHub :
<a href="https://github.com/novnc/noVNC">novnc/noVNC</a>
</div>
</div>
</body>
</html>