]> git.proxmox.com Git - mirror_novnc.git/blob - README.md
Use standard citing format for contributors.
[mirror_novnc.git] / README.md
1 ## noVNC: HTML5 VNC Client
2
3
4 ### Description
5
6 noVNC is a HTML5 VNC client that runs well in any modern browser
7 including mobile browsers (iPhone/iPad and Android).
8
9 Notable commits, announcements and news are posted to
10 @<a href="http://www.twitter.com/noVNC">noVNC</a>
11
12 There are many companies/projects that have integrated noVNC into
13 their 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.
14
15
16 ### Features
17
18 * Supports all modern browsers including mobile (iOS, Android)
19 * Supported VNC encodings: raw, copyrect, rre, hextile, tight, 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
29 ### Screenshots
30
31 Running in Chrome before and after connecting:
32
33 <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>
34
35 See more screenshots <a href="http://kanaka.github.com/noVNC/screenshots.html">here</a>.
36
37
38 ### Browser Requirements
39
40 * HTML5 Canvas (with createImageData): Chrome, Firefox 3.6+, iOS
41 Safari, Opera 11+, Internet Explorer 9+, etc.
42
43 * HTML5 WebSockets: For browsers that do not have builtin
44 WebSockets support, the project includes
45 <a href="http://github.com/gimite/web-socket-js">web-socket-js</a>,
46 a WebSockets emulator using Adobe Flash. iOS 4.2+ has built-in
47 WebSocket support.
48
49 * Fast Javascript Engine: this is not strictly a requirement, but
50 without a fast Javascript engine, noVNC might be painfully slow.
51
52 * I maintain a more detailed browser compatibility list <a
53 href="https://github.com/kanaka/noVNC/wiki/Browser-support">here</a>.
54
55
56 ### Server Requirements
57
58 Unless you are using a VNC server with support for WebSockets
59 connections (such as [x11vnc/libvncserver](http://libvncserver.sourceforge.net/)),
60 you need to use a WebSockets to TCP socket proxy. There is
61 a python proxy included ('websockify').
62
63
64 ### Quick Start
65
66 * Use the launch script to start a mini-webserver and the WebSockets
67 proxy (websockify). The `--vnc` option is used to specify the location of
68 a running VNC server:
69
70 `./utils/launch.sh --vnc localhost:5901`
71
72 * Point your browser to the cut-and-paste URL that is output by the
73 launch script. Enter a password if the VNC server has one
74 configured. Hit the Connect button and enjoy!
75
76
77 ### Other Pages
78
79 * [Advanced Usage](https://github.com/kanaka/noVNC/wiki/Advanced-usage). Generating an SSL
80 certificate, starting a VNC server, advanced websockify usage, etc.
81
82 * [Integrating noVNC](https://github.com/kanaka/noVNC/wiki/Integration) into existing projects.
83
84 * [Troubleshooting noVNC](https://github.com/kanaka/noVNC/wiki/Troubleshooting) problems.
85
86
87 ### Authors/Contributors
88
89 * noVNC : Joel Martin (github.com/kanaka)
90 * New UI and Icons : Chris Gordon
91 * Original Logo : Michael Sersen
92 * tight encoding : Michael Tinglof (Mercuri.ca)
93
94 * Included libraries:
95 * web-socket-js : Hiroshi Ichikawa (github.com/gimite/web-socket-js)
96 * as3crypto : Henri Torgemane (code.google.com/p/as3crypto)
97 * base64 : Martijn Pieters (Digital Creations 2), Samuel Sieb (sieb.net)
98 * jsunzip : Erik Moller (github.com/operasoftware/jsunzip),
99 * tinflate : Joergen Ibsen (ibsensoftware.com)
100 * DES : Dave Zimmerman (Widget Workshop), Jef Poskanzer (ACME Labs)
101
102