Skip to content

fdev31/wdb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wdb

Description

wdb is as for now a proof of concept of an independant web debugger for wsgi project (implemented as a wsgi middleware).

Unlike other web debuggers, wdb is based on the python bdb debugger framework. (The one used by pdb)

This allows step by step debugging during the rendering of the page as well as exception inspection in the very state the exception occured.

How is it possible ?

WebSockets! All debug information between web page and web server transits throught a websocket opened on a random port. Server request processing is blocked by the websocket and then resumed when the debugging is over.

Warning

This is still far from working perfectly, it has a lot of known issues and can easily break your application but the in page debugging does work. You probably will have to kill everything and start again once something went wrong.

Random disclaimer warning

This python thing will probably eat your cat.

Instalation:

    $ pip install wdb

Usage

To try it you can simply run the run.py script which is a flask application which will be accessible at http://localhost:1984/, http://localhost:1984/wtf for step by step testing.

To try it on another wsgi application, use the Wdb middleware:

    from wdb import Wdb
    wsgi_app = Whathever_wsgi_server_lib()
    my_app = Wdb(wsgi_app)
    my_app.serve_forever()

Using flask:

    from wdb import Wdb
    app = Flask(__name__)
    app.wsgi_app = Wdb(app.wsgi_app)
    app.run()

Using django:

In your wsgi.py, add the middleware:

After:

    # This application object is used by any WSGI server configured to use this
    # file. This includes Django's development server, if the WSGI_APPLICATION
    # setting points here.
    from django.core.wsgi import get_wsgi_application
    application = get_wsgi_application()

Add this:

    from wdb import Wdb
    application = Wdb(application)

In your settings.py, activate exception propagation:

    DEBUG = True
    DEBUG_PROPAGATE_EXCEPTIONS = True

Breaking

You can now put some breakpoint in a request code:

    do_something()
    import wdb; wdb.set_trace()
    return

Once you are in a breakpoint or in an exception, you can eval all you want in the prompt under the code. Multi-lines are partially supported using [Shift] + [Enter].

As of now the following special commands are supported during breakpoint:

  • .s or [Ctrl] + [↓]: Step into
  • .n or [Ctrl] + [→]: Step over (Next)
  • .c or [Ctrl] + [↑]: Step out (Return)
  • .c or [Ctrl] + [←]: Continue
  • .q: Quit

NB: Hotkeys are purposedly not triggered in the eval prompt to avoid conflicts when typing.

Author

Florian Mounier @ Kozea

Licence

This library is licensed under GPLv3

wdb - An improbable web debugger through WebSockets

wdb Copyright (C) 2012  Florian Mounier, Kozea

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

About

An improbable web debugger through WebSockets

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 60.0%
  • Python 27.7%
  • CoffeeScript 12.3%