]> git.proxmox.com Git - mirror_novnc.git/blob - README.md
Update licensing information
[mirror_novnc.git] / README.md
1 ## noVNC: HTML VNC Client Library and Application
2
3 [![Build Status](https://travis-ci.org/novnc/noVNC.svg?branch=master)](https://travis-ci.org/novnc/noVNC)
4
5 ### Description
6
7 noVNC is both a HTML VNC client JavaScript library and an application built on
8 top of that library. noVNC runs well in any modern browser including mobile
9 browsers (iOS and Android).
10
11 Many companies, projects and products have integrated noVNC including
12 [OpenStack](http://www.openstack.org),
13 [OpenNebula](http://opennebula.org/),
14 [LibVNCServer](http://libvncserver.sourceforge.net), and
15 [ThinLinc](https://cendio.com/thinlinc). See
16 [the Projects and Companies wiki page](https://github.com/novnc/noVNC/wiki/Projects-and-companies-using-noVNC)
17 for a more complete list with additional info and links.
18
19 ### News/help/contact
20
21 The project website is found at [novnc.com](http://novnc.com).
22 Notable commits, announcements and news are posted to
23 [@noVNC](http://www.twitter.com/noVNC).
24
25 If you are a noVNC developer/integrator/user (or want to be) please join the
26 [noVNC discussion group](https://groups.google.com/forum/?fromgroups#!forum/novnc).
27
28 Bugs and feature requests can be submitted via
29 [github issues](https://github.com/novnc/noVNC/issues). If you have questions
30 about using noVNC then please first use the
31 [discussion group](https://groups.google.com/forum/?fromgroups#!forum/novnc).
32 We also have a [wiki](https://github.com/novnc/noVNC/wiki/) with lots of
33 helpful information.
34
35 If you are looking for a place to start contributing to noVNC, a good place to
36 start would be the issues that are marked as
37 ["patchwelcome"](https://github.com/novnc/noVNC/issues?labels=patchwelcome).
38 Please check our
39 [contribution guide](https://github.com/novnc/noVNC/wiki/Contributing) though.
40
41 If you want to show appreciation for noVNC you could donate to a great non-
42 profits such as:
43 [Compassion International](http://www.compassion.com/),
44 [SIL](http://www.sil.org),
45 [Habitat for Humanity](http://www.habitat.org),
46 [Electronic Frontier Foundation](https://www.eff.org/),
47 [Against Malaria Foundation](http://www.againstmalaria.com/),
48 [Nothing But Nets](http://www.nothingbutnets.net/), etc.
49 Please tweet [@noVNC](http://www.twitter.com/noVNC) if you do.
50
51
52 ### Features
53
54 * Supports all modern browsers including mobile (iOS, Android)
55 * Supported VNC encodings: raw, copyrect, rre, hextile, tight, tightPNG
56 * Supports scaling, clipping and resizing the desktop
57 * Local cursor rendering
58 * Clipboard copy/paste
59 * Licensed mainly under the [MPL 2.0](http://www.mozilla.org/MPL/2.0/), see
60 [the license document](LICENSE.txt) for details
61
62 ### Screenshots
63
64 Running in Firefox before and after connecting:
65
66 <img src="http://novnc.com/img/noVNC-1-login.png" width=400>&nbsp;
67 <img src="http://novnc.com/img/noVNC-3-connected.png" width=400>
68
69 See more screenshots
70 [here](http://novnc.com/screenshots.html).
71
72
73 ### Browser Requirements
74
75 * Chrome 49, Firefox 44, Safari 10, Opera 36, IE 11, Edge 12, etc.
76
77 * HTML5 Canvas, WebSockets and Typed Arrays, etc.
78
79 * Fast Javascript Engine: this is not strictly a requirement, but without a
80 fast Javascript engine, noVNC might be painfully slow.
81
82 * See the more detailed
83 [browser compatibility wiki page](https://github.com/novnc/noVNC/wiki/Browser-support).
84
85
86 ### Server Requirements
87
88 Unless you are using a VNC server with support for WebSockets connections (such
89 as [x11vnc/libvncserver](http://libvncserver.sourceforge.net/),
90 [QEMU](http://www.qemu.org/), or
91 [MobileVNC](http://www.smartlab.at/mobilevnc/)), you need to use a
92 WebSockets to TCP socket proxy. There is a python proxy included
93 ('websockify').
94
95
96 ### Quick Start
97
98 * Use the launch script to start a mini-webserver and the WebSockets proxy
99 (websockify). The `--vnc` option is used to specify the location of a running
100 VNC server:
101
102 `./utils/launch.sh --vnc localhost:5901`
103
104 * Point your browser to the cut-and-paste URL that is output by the launch
105 script. Enter a password if the VNC server has one configured. Hit the
106 Connect button and enjoy!
107
108
109 ### Authors/Contributors
110
111 * Core team:
112 * [Joel Martin](https://github.com/kanaka)
113 * [Samuel Mannehed](https://github.com/samhed) (Cendio)
114 * [Peter Åstrand](https://github.com/astrand) (Cendio)
115 * [Solly Ross](https://github.com/DirectXMan12) (Red Hat / OpenStack)
116 * [Pierre Ossman](https://github.com/CendioOssman) (Cendio)
117
118 * Notable contributions:
119 * UI and Icons : Pierre Ossman, Chris Gordon
120 * Original Logo : Michael Sersen
121 * tight encoding : Michael Tinglof (Mercuri.ca)
122
123 * Included libraries:
124 * as3crypto : Henri Torgemane (code.google.com/p/as3crypto)
125 * base64 : Martijn Pieters (Digital Creations 2), Samuel Sieb (sieb.net)
126 * DES : Dave Zimmerman (Widget Workshop), Jef Poskanzer (ACME Labs)
127 * Pako : Vitaly Puzrin (https://github.com/nodeca/pako)
128
129 Do you want to be on this list? Check out our
130 [contribution guide](https://github.com/novnc/noVNC/wiki/Contributing) and
131 start hacking!