]> git.proxmox.com Git - mirror_novnc.git/blame - README.md
General code formatting and cleanliness.
[mirror_novnc.git] / README.md
CommitLineData
5ba1dd78 1## noVNC: HTML5 VNC Client
5aeb9880
JM
2
3
5ba1dd78 4### Description
5aeb9880 5
a538be43
JM
6noVNC is a HTML5 VNC client that runs well in any modern browser
7including mobile browsers (iPhone/iPad and Android).
8
bc715065
JM
9Notable commits, announcements and news are posted to
10@<a href="http://www.twitter.com/noVNC">noVNC</a>
5aeb9880 11
68edd7f4 12There are many companies/projects that have integrated noVNC into
91b0dc39 13their products including: [Ganeti Web Manager](http://code.osuosl.org/projects/ganeti-webmgr), [Archipel](http://archipelproject.org), [openQRM](http://www.openqrm.com/), [OpenNode](http://www.opennodecloud.com/), [OpenStack](http://www.openstack.org), [Broadway (HTML5 GDK/GTK+ backend)](http://blogs.gnome.org/alexl/2011/03/15/gtk-html-backend-update/), [OpenNebula](http://opennebula.org/), [CloudSigma](http://www.cloudsigma.com/), [Zentyal (formerly eBox)](http://www.zentyal.org/), [SlapOS](http://www.slapos.org), [Intel MeshCentral](https://meshcentral.com), [Amahi](http://amahi.org), [Brightbox](http://brightbox.com/), and [LibVNCServer](http://libvncserver.sourceforge.net). See [this wiki page](https://github.com/kanaka/noVNC/wiki/ProjectsCompanies-using-noVNC) for more info and links.
68edd7f4 14
bc715065
JM
15
16### Features
17
18* Supports all modern browsers including mobile (iOS, Android)
19* Supported VNC encodings: raw, copyrect, rre, hextile, tightPNG
20* WebSocket SSL/TLS encryption (i.e. "wss://") support
21* 24-bit true color and 8 bit colour mapped
22* Supports desktop resize notification/pseudo-encoding
23* Local or remote cursor
24* Clipboard copy/paste
25* Clipping or scolling modes for large remote screens
26* Easy site integration and theming (3 example themes included)
27* Licensed under the [LGPLv3](http://www.gnu.org/licenses/lgpl.html)
28
d38db74a 29* Support for tight encoding (contributed by Mercuri.ca)
b4748f04 30
852ba642
JM
31### Screenshots
32
e5517ecd 33Running in Chrome before and after connecting:
600887f0 34
65db2d82 35<img src="http://kanaka.github.com/noVNC/img/noVNC-5.png" width=400>&nbsp;<img src="http://kanaka.github.com/noVNC/img/noVNC-7.jpg" width=400>
5aeb9880 36
852ba642
JM
37See more screenshots <a href="http://kanaka.github.com/noVNC/screenshots.html">here</a>.
38
39
6de07adb
JM
40### Browser Requirements
41
b29e06f3
JM
42* HTML5 Canvas (with createImageData): Chrome, Firefox 3.6+, iOS
43 Safari, Opera 11+, Internet Explorer 9+, etc.
6de07adb
JM
44
45* HTML5 WebSockets: For browsers that do not have builtin
46 WebSockets support, the project includes
47 <a href="http://github.com/gimite/web-socket-js">web-socket-js</a>,
b29e06f3
JM
48 a WebSockets emulator using Adobe Flash. iOS 4.2+ has built-in
49 WebSocket support.
6de07adb 50
a367e84a
JM
51* Fast Javascript Engine: this is not strictly a requirement, but
52 without a fast Javascript engine, noVNC might be painfully slow.
6de07adb 53
b29e06f3 54* I maintain a more detailed browser compatibility list <a
667ef9ba 55 href="https://github.com/kanaka/noVNC/wiki/Browser-support">here</a>.
d4139a9b
JM
56
57
6de07adb 58### Server Requirements
5aeb9880 59
b89c6db3 60Unless you are using a VNC server with support for WebSockets
a367e84a
JM
61connections (such as [x11vnc/libvncserver](http://libvncserver.sourceforge.net/)),
62you need to use a WebSockets to TCP socket proxy. There is
bc715065 63a python proxy included ('websockify').
5aeb9880 64
5aeb9880 65
b89c6db3 66### Quick Start
5aeb9880 67
b89c6db3 68* Use the launch script to start a mini-webserver and the WebSockets
9df83a39 69 proxy (websockify). The `--vnc` option is used to specify the location of
b89c6db3
JM
70 a running VNC server:
71
72 `./utils/launch.sh --vnc localhost:5901`
73
74* Point your browser to the cut-and-paste URL that is output by the
75 launch script. Enter a password if the VNC server has one
76 configured. Hit the Connect button and enjoy!
77
78
9df83a39 79### Other Pages
5aeb9880 80
667ef9ba 81* [Advanced Usage](https://github.com/kanaka/noVNC/wiki/Advanced-usage). Generating an SSL
9df83a39 82 certificate, starting a VNC server, advanced websockify usage, etc.
a4807656 83
667ef9ba 84* [Integrating noVNC](https://github.com/kanaka/noVNC/wiki/Integration) into existing projects.
a4807656 85
667ef9ba 86* [Troubleshooting noVNC](https://github.com/kanaka/noVNC/wiki/Troubleshooting) problems.
b89c6db3 87
0af07711 88