npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vnc-server-libs

v1.0.1

Published

vnc proxy

Downloads

8

Readme

vnv-server 服务

提供node服务 ,让其他电脑或设备可以通过浏览器或/vnc专属服务 远程连接到开启此服务的设备上

包packages 是windows 64位 VNC 服务软件包

VNC软件简介

VNC(Virtual Network Computing),为一种使用 RFB 协定的屏幕画面分享及远端操作软件。此软件借由网络,可传送键盘与鼠标的动作及即时的屏幕画面。

VNC 与操作系统无关,因此可跨平台使用,例如可用 Windows 连线到某 Linux 的电脑,反之亦同。甚至在没有安装用户端程式的电脑中,只要有支援 JAVA 的浏览器,也可使用。

UltraVNC:加入了 TightVNC 的部份程式及加强效能的图型映射驱动程式,并结合 Active Directory 及 NTLM 的帐号密码认证,但仅有 Windows 版本。

安装

npm i --save vnc-server
const vncServer =require('vnc-server')
const  WebSocketServer = require('ws').Server;
let vncConfig={
    port:9000,  // 当前服务监听的ws端口
    vncAddress:'127.0.0.1:5900',// vnc服务端口
}
 let vnc_server=  new vncServer(vncConfig.port,vncConfig.vncAddress);
 let webServer= vnc_server.createVncServer();
 webServer.listen(vncConfig.port, ()=> {
  let   wsServer = new WebSocketServer({server: webServer});
    wsServer.on('connection', vnc_server.newClient);
});
  // 运行该 js  浏览器 访问 http://127.0.0.1:9000/vnc.html

vue 使用 需要安装 @novnc/novnc

<template>
   <div id="view" ref="rfbRef"></div>
</template>

<script setup>

import {nextTick, onMounted, ref} from "vue";
import RFB from '@novnc/novnc/core/rfb';
  const vncConfig={
    "rfb": "http://127.0.0.1:9000/vnc.html",
    "password": "123456",
    "websockify": "ws://127.0.0.1:9000"
  },

const rfbServer =ref();
const rfbRef =ref();
onMounted(()=>{
  rfbServer.value=new RFB(rfbRef.value,vncConfig.websockify);
  connect();
})
const connect=()=>{
  rfbServer.value.sendCredentials({password:vncConfig.password});
 
}
const disconnect = () => {
  rfbServer.value.disconnect();
  rfbServer.value=new RFB(rfbRef.value,websockify);
}



</script>

参考 https://github.com/novnc/noVNC.git; https://github.com/novnc/websockify