A React Component to connect to a websockified VNC client using noVNC.
npm install react-vnc[![Issues][issues-shield]][issues-url]
A React Component to connect to a websockified VNC client using noVNC.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
* About the Project
* Built With
* Demo
* Getting Started
* Prerequisites
* Installation
* Usage
* Roadmap
* Contributing
* License
* Contributors
noVNC is a VNC client web application using which you can view a VNC stream directly on a browser. It uses websockify to convert the VNC stream into a websocket stream, which can be viewed on a browser. This library provides a React component wrapper around the noVNC web client.
Using this library, you can easily display a VNC stream on a page of your web application. Here is an example.
A demo website using the react-vnc library is hosted on https://roerohan.github.io/react-vnc/. The source for this application can be found in src/App.tsx.

To install the library, you can run the following command:
``bash`
npm i react-vnc
In order to run the project locally, follow these steps:
1. Clone the repository.
`bash`
git clone git@github.com:roerohan/react-vnc.git
cd react-vnc
2. Install the packages and submodules.
`bash`
npm install
git submodule update --init --recursive
3. To run the sample react-vnc web application:`bash`
echo "REACT_APP_VNC_URL=ws://your-vnc-url.com" > .env
npm start
4. To build the library, make changes inside the lib folder, then run:`bash`
npm run build:lib
A VncScreen component is exposed from the library, to which you can pass the required and optional props. For example,
`ts
import React, { useRef } from 'react';
import { VncScreen } from 'react-vnc';
function App() {
const ref = useRef();
return (
scaleViewport
background="#000000"
style={{
width: '75vw',
height: '75vh',
}}
ref={ref}
/>
);
}
export default App;
`
If you need to handle authentication or perform a custom handshake before establishing the VNC connection, you can pass a pre-authenticated WebSocket instance instead of a URL:
`ts
import React, { useEffect, useState } from 'react';
import { VncScreen } from 'react-vnc';
function App() {
const [websocket, setWebsocket] = useState
useEffect(() => {
// Create WebSocket and handle authentication
const ws = new WebSocket('ws://your-vnc-server.com');
ws.addEventListener('open', () => {
// Perform custom authentication or handshake
ws.send(JSON.stringify({ token: 'your-auth-token' }));
});
ws.addEventListener('message', (event) => {
const response = JSON.parse(event.data);
if (response.authenticated) {
// Once authenticated, pass the WebSocket to VncScreen
setWebsocket(ws);
}
});
return () => {
ws.close();
};
}, []);
if (!websocket) {
return
return (
scaleViewport
style={{
width: '75vw',
height: '75vh',
}}
/>
);
}
export default App;
`
This approach is particularly useful for:
- Cookie-based authentication
- Custom authentication protocols
- Connection pooling or reuse
- Advanced WebSocket configuration
Either url or websocket is required:url
- : A ws:// or wss:// websocket URL to connect to the VNC serverwebsocket
- : A pre-authenticated WebSocket instance (useful for custom authentication flows)
All other props to VncScreen are optional. The following is a list (an interface) of all props along with their types.
`ts
type EventListeners = { [T in NoVncEventType]?: (event: NoVncEvents[T]) => void };
interface Props {
url?: string;
websocket?: WebSocket;
style?: object;
className?: string;
viewOnly?: boolean;
rfbOptions?: Partial
focusOnClick?: boolean;
clipViewport?: boolean;
dragViewport?: boolean;
scaleViewport?: boolean;
resizeSession?: boolean;
showDotCursor?: boolean;
background?: string;
qualityLevel?: number;
compressionLevel?: number;
autoConnect?: boolean;
retryDuration?: number;
debug?: boolean;
onConnect?: EventListeners['connect'];
onDisconnect?: EventListeners['disconnect'];
onCredentialsRequired?: EventListeners['credentialsrequired'];
onSecurityFailure?: EventListeners['securityfailure'];
onClipboard?: EventListeners['clipboard'];
onBell?: EventListeners['bell'];
onDesktopName?: EventListeners['desktopname'];
onCapabilities?: EventListeners['capabilities'];
onClippingViewport?: EventListeners['clippingviewport'];
}
// The types NoVncOptions, NoVncEventType and NoVncEvents are from the
// @novnc/novnc library.
`
To know more about these props, check out API.md.
You can pass a ref to the VncScreen component, and access the connect() and disconnect() methods from the library. Check out #18 for more details.
The ref object has the following type:`ts`
type VncScreenHandle = {
connect: () => void;
disconnect: () => void;
connected: boolean;
sendCredentials: (credentials: NoVncOptions["credentials"]) => void;
sendKey: (keysym: number, code: string, down?: boolean) => void;
sendCtrlAltDel: () => void;
focus: () => void;
blur: () => void;
machineShutdown: () => void;
machineReboot: () => void;
machineReset: () => void;
clipboardPaste: (text: string) => void;
rfb: RFB | null;
loading: boolean;
eventListeners: EventListeners;
};
The onConnect, onDisconnect, onCredentialsRequired, and onDesktopName props are optional, and there are existing defaults set for them. For example, the default onDisconnect function consists of some logic to retry connecting after a certain timeout (specified by retryDuration). Check out the default _onConnect and _onDisconnect functions in VncScreen.tsx for more details.
The onConnect, onDisconnect, and onCredentialsRequired callbacks can accept a single parameter rfb. This parameter is the RFB object, which is described by noVNC. Learn more about the RFB object here.
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
1. Fork the Project
2. Create your Feature Branch (git checkout -b feature/AmazingFeature)git commit -m 'feat: Add some AmazingFeature'
3. Commit your Changes ()git push origin feature/AmazingFeature
4. Push to the Branch ()
5. Open a Pull Request
You are requested to follow the contribution guidelines specified in CONTRIBUTING.md while contributing to the project :smile:.
Distributed under the MIT License. See LICENSE` for more information.
[roerohan-url]: https://roerohan.github.io
[issues-shield]: https://img.shields.io/github/issues/roerohan/react-vnc.svg?style=flat-square
[issues-url]: https://github.com/roerohan/react-vnc/issues