
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
django-debug-toolbar in WebKit DevTools. Works fine with background Ajax requests and non-HTML responses
Django Debug Toolbar inside WebKit DevTools. Works fine with background AJAX requests and non-HTML responses. Great for single-page applications and other AJAX intensive web applications.
#. Install and configure Django Debug Toolbar <https://github.com/django-debug-toolbar/django-debug-toolbar>
_
#. Install Django Debug Panel:
.. code-block:: bash
pip install django-debug-panel
#. Add debug_panel
to your INSTALLED_APPS
setting:
.. code-block:: python
INSTALLED_APPS = (
# ...
'debug_panel',
)
#. Replace the Django Debug Toolbar middleware with the Django Debug Panel one. Replace:
.. code-block:: python
MIDDLEWARE_CLASSES = (
...
'debug_toolbar.middleware.DebugToolbarMiddleware',
...
)
with:
.. code-block:: python
MIDDLEWARE_CLASSES = (
...
'debug_panel.middleware.DebugPanelMiddleware',
...
)
#. (Optional) Configure your cache.
All the debug data of a request are stored into the cache backend debug-panel
if available. Otherwise, the default
backend is used, and finally if no caches are
defined it will fallback to a local memory cache.
You might want to configure the debug-panel
cache in your settings
:
.. code-block:: python
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
},
# this cache backend will be used by django-debug-panel
'debug-panel': {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
'LOCATION': '/var/tmp/debug-panel-cache',
'OPTIONS': {
'MAX_ENTRIES': 200
}
}
}
#. Install the Chrome extension Django Debug Panel <https://chrome.google.com/webstore/detail/django-debug-panel/nbiajhhibgfgkjegbnflpdccejocmbbn>
_
FAQs
django-debug-toolbar in WebKit DevTools. Works fine with background Ajax requests and non-HTML responses
We found that django-debug-panel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.