diff --git a/README.md b/README.md index d16427b..c74c3a8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Mstsc.js Logo](./client/img/mstsc.js.png) -**Mstsc.js** is pure javascript Microsoft RDP (Remote Desktop Client) client using nodejs, [**node-rdp**](https://github.com/citronneur/node-rdp) and socket.io. It allows you to connect to any terminal server compatible application, through web browser (optimized for firefox, compatible with chrome and internet explorer 11). +**Mstsc.js** is pure javascript Microsoft RDP (Remote Desktop Client) client using nodejs, [**node-rdpjs**](https://github.com/citronneur/node-rdpjs) and socket.io. It allows you to connect to any terminal server compatible application, through web browser (optimized for firefox, compatible with chrome and internet explorer 11). ![](./img/mstsc.js.login.png) @@ -46,6 +46,6 @@ Frontend application use socket.io and canvas for binding with mstsc.js backend. ### Backend -Backend application use nodejs, express and socket.io as web server. Main goal of backend is be a proxy betwwen web browser and terminal server. It use [**node-rdp**](https://github.com/citronneur/node-rdp) for rdp client. +Backend application use nodejs, express and socket.io as web server. Main goal of backend is be a proxy betwwen web browser and terminal server. It use [**node-rdpjs**](https://github.com/citronneur/node-rdpjs) for rdp client. diff --git a/client/js/canvas.js b/client/js/canvas.js index 6b464c5..fc5051d 100644 --- a/client/js/canvas.js +++ b/client/js/canvas.js @@ -21,7 +21,7 @@ /** * decompress bitmap from RLE algorithm - * @param bitmap {object} bitmap object of bitmap event of node-rdp + * @param bitmap {object} bitmap object of bitmap event of node-rdpjs */ function decompress (bitmap) { var fName = null; diff --git a/package.json b/package.json index bbe05cd..3c12d98 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ "dependencies": { "express": "4.x.x", - "socket.io": "1.3.x" + "socket.io": "1.3.x", + "node-rdpjs": "0.1.1" }, "scripts": { "start": "node server.js" diff --git a/server/mstsc.js b/server/mstsc.js index 2f3aa9c..7d98889 100644 --- a/server/mstsc.js +++ b/server/mstsc.js @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -var rdp = require('rdp'); +var rdp = require('node-rdpjs'); /** * Create proxy between rdp layer and socket io