headscale-tailscale-replace.../farmq-admin/static/novnc/docs/LIBRARY.md
시골약사 c37cf023c1 사이드바 브랜딩을 PharmQ Super Admin (PSA)로 업데이트
- base.html 상단 네비게이션 브랜딩 변경
- 팜큐 약국 관리 시스템 → PharmQ Super Admin (PSA)
- UI 일관성 향상을 위한 브랜딩 통합

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-11 13:45:29 +09:00

1.1 KiB

Using the noVNC JavaScript library

This document describes how to make use of the noVNC JavaScript library for integration in your own VNC client application. If you wish to embed the more complete noVNC application with its included user interface then please see our embedding documentation.

API

The API of noVNC consists of a single object called RFB. The formal documentation for that object can be found in our API documentation.

Example

noVNC includes a small example application called vnc_lite.html. This does not make use of all the features of noVNC, but is a good start to see how to do things.

Conversion of Modules

noVNC is written using ECMAScript 6 modules. This is not supported by older versions of Node.js. To use noVNC with those older versions of Node.js the library must first be converted.

Fortunately noVNC includes a script to handle this conversion. Please follow the following steps:

  1. Install Node.js
  2. Run npm install in the noVNC directory

The result of the conversion is available in the lib/ directory.