1.1.2 • Published 7 years ago

node-remote-debugger v1.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

vs-remote-debugger (Node.js SDK)

npm

Server-side Node.js library for interacting with vs-remote-debugger Visual Studio Code extension, e.g.

Donate

License

MIT license

Install

Run

npm install node-remote-debugger

inside your app project to install the module.

Usage

If you look at the example code you can see how the class can be used:

import { RemoteDebugger } from 'node-remote-debugger';
import * as ZLib from 'zlib';

let remoteDebugger = new RemoteDebugger();
remoteDebugger.addHost('localhost', 23979);

// compress JSON data with GZIP
// 
// activate the "gzip" plugin in your
// launch.json file in VS Code!
remoteDebugger.jsonTransformer = (buff) => {
    return ZLib.gzipSync(buff);
};

remoteDebugger.dbg({
    a: 11,
    b: 22,
    c: 33,
});

A possible result can be this here:

VS Code screenshot 1

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago