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

@flexem/novnc

v1.1.6

Published

An HTML5 VNC client

Downloads

14

Readme

Welcome to novnc

This project was forked from novnc (github)

npm install

npm install @flexem/novnc --save

Usage & Steps

  1. 获取VNC接口Token
getVncToken(): Observable<VncTokenDto> {
    const self = this;
    const url = (!self.appConfig.vncUrl ? self.appConfig.asApiUrl + '/vnc' : self.appConfig.vncUrl) + '/api/server';
    const ret: VncTokenDto = new VncTokenDto();
    return self.httpClient.get(url).map((response) => {
      ret.id = response.id;
      ret.ip = response.ip;
      ret.port = response.port;
      ret.token = response.token;
      return ret;
    }).catch((error: HttpError) => {
      return Observable.throw(error);
    });
  }
  1. 调用FBOX接口开启VNC连接
openVnc(box: BoxRegistration, param: OpenVncDto): Observable<boolean> {
    const self = this;
    const url_ = box.cs.apiBaseUrl + 'v2/box/' + box.id + '/openvnc';
    return self.httpClient.post(url_, param).map((response) => {
      return true;
    }).catch((error: HttpError) => {
      return Observable.throw(error);
    });
  }
  1. 接收FBOX Signalr返回的开启VNC状态
this.hubProxy.on('openVncStatus', (boxNo, id, status, token) => {
      const self = this;
      self.events.publish('openVncStatus', boxNo, id, status, token);
    });
    
error code
"1": "设备网络不通,请检查设备VNC服务是否开启"
"2": "服务器网络不通"
"3": "校验码验证无效"
"4": "设备连接数过多"
  1. html body添加div
<div id="vnccreen"></div>
  1. js调用RFB
connect() {
    const self = this;
    const url = (!self.boxInformationProxy.appConfig.vncUrl ? self.boxInformationProxy.appConfig.asApiUrl
       : self.boxInformationProxy.appConfig.vncUrl).replace('http://', 'ws://').replace('https://', 'wss://')
       + '/websockify?token=' + self.vncParams.token;
    const options = {
      credentials: null
    };
    if (self.vncParams.password) {
        options.credentials = { password: self.vncParams.password };
    }
    self.rfb = new RFB(document.getElementById('vnccreen'), url, options);

    // Add listeners to important events from the RFB module
    self.rfb.addEventListener('connect', (e) => {
      self.connectedToServer(e, self);
    });
    self.rfb.addEventListener('disconnect', (e) => {
      self.disconnectedFromServer(e, self);
    });
    self.rfb.addEventListener('credentialsrequired', (e) => {
      self.credentialsAreRequired(e, self);
    });
    self.rfb.addEventListener('securityfailure', (e) => {
      self.securityFailed(e, self);
    });
    self.rfb.addEventListener('desktopname', (e) => {
      self.updateDesktopName(e, self);
    });

    // Set parameters that can be changed on an active connection
    // self.rfb.viewOnly = self.vncParams.viewonly === true;
    self.rfb.scaleViewport = self.vncParams.scale === true;
    self.rfb.qualityLevel = 1;
    // self.rfb.dragViewport = true;
    self.rfb.dragDelayMs = 300;
    self.rfb._keyboard.onkeyevent = self.onKeyEvent;
  }
  connectedToServer(e, self) {
    self.status(self.l('VNC.VncConnectedTo') + self.desktopName);
  }
  disconnectedFromServer(e, self) {
    if (e.detail.clean) {
        self.status(self.l('VNC.VncConnectionClosed'));
    } else {
        self.showAlert(self.l('VNC.VncConnectionError'), self.l('VNC.VncConnectionErrorAlert'), true);
    }
  }
  credentialsAreRequired(e, self) {
    const prompt = this.alertCtrl.create({
      title: self.l('VNC.VncPasswordPrompt'),
      message: '',
      inputs: [
        {
          name: 'Password',
          placeholder: self.l('VNC.VncPassword')
        }
      ],
      buttons: [
        {
          text: self.l('Cancel'),
          handler: (data) => {
            self.navCtrl.pop();
          }
        },
        {
          text: self.l('OK'),
          handler: (data) => {
            self.rfb.sendCredentials({ password: data.Password });
          }
        }
      ]
    });
    prompt.present();
  }
  securityFailed(e, self) {
    let msg = '';
    if ('reason' in e.detail) {
        msg = 'New connection has been rejected with reason: ' + e.detail.reason;
    } else {
        msg = 'New connection has been rejected';
    }
    self.showAlert(msg, null, true);
  }
  updateDesktopName(e, self) {
    self.desktopName = e.detail.name;
  }
  status(text) {
    super.toastl(text);
  }
  onKeyEvent(keysym: any, code: any, down: any): void {
  }

  showAlert(title: string, subTitle?: string, back = false): void {
    const self = this;
    const alert = self.alertCtrl.create({
      title: title || 'Message',
      subTitle: subTitle,
      buttons: [self.l('OK')]
    });
    alert.present();
    if (back) {
      self.navCtrl.pop();
    }
  }