@illgrenoble/ngx-remote-desktop
Version:
ngx-remote-desktop is an Angular2+ module for connecting to a remote desktop using the guacamole protocol
30 lines (23 loc) • 739 B
Markdown
# Installation
To use `ngx-remote-desktop` in your project install it via npm:
```
npm i /ngx-remote-desktop --save
```
We also require two peer dependencies:
```
npm i /guacamole-common-js --save
npm i screenfull --save
```
After installing, include `NgxRemoteDesktopModule` in your application module like this:
```typescript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxRemoteDesktopModule } from '@illgrenoble/ngx-remote-desktop';
import { AppComponent } from './app.component';
export class AppModule { }
```