Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 464 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 464 Bytes

Node Debug

A HTTP based console and object explorer for node.js.

Its like a REPL for a node app in the browser.

Usage

Include the following in your project:

var debug = require("debug.js");
debug.listen(8080);

Example:

$ /usr/local/bin/node example.js

Browse to: http://127.0.0.1:8080/

Now type:

node

setTimeout(function () { debug.log("Test"); }, 5000)

Click on objects to expand properties.