Skip to content

Commit

Permalink
npm configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
citronneur committed Jul 6, 2015
1 parent 87d2d48 commit 8605f44
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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.


2 changes: 1 addition & 1 deletion client/js/canvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion server/mstsc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

var rdp = require('rdp');
var rdp = require('node-rdpjs');

/**
* Create proxy between rdp layer and socket io
Expand Down

0 comments on commit 8605f44

Please sign in to comment.