nhemsley / node_debug

HTTP based console and object explorer for node.js

Home Page:http://connorhd.co.uk/2010/01/25/node_debug-a-debugging-console-over-http/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

HTTP based console and object explorer for node.js

http://connorhd.co.uk/2010/01/25/node_debug-a-debugging-console-over-http/


Languages

Language:JavaScript 100.0%