Skip to content

smith/node_debug

 
 

Repository files navigation

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.

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%