devgeniem / dustpress-debugger
Provides handy ajaxified debugger tool for DustPress based themes.
Installs: 57 595
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 8
Forks: 5
Open Issues: 12
Language:JavaScript
Type:wordpress-plugin
Requires
- php: >=7.1
- devgeniem/dustpress: >=1.28.0
- dev-master
- 2.0.0
- 1.7.1
- 1.7.0
- 1.6.0
- 1.5.5
- 1.5.4
- 1.5.3
- v1.5.2.x-dev
- 1.5.2
- 1.5.1
- 1.5.0
- 1.5.0-beta
- v1.4.0.x-dev
- 1.4.0
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.2
- 1.0.1
- 1.0
- dev-dependabot/npm_and_yarn/postcss-8.4.31
- dev-dependabot/npm_and_yarn/semver-6.3.1
- dev-dependabot/npm_and_yarn/webpack-5.76.0
- dev-dependabot/npm_and_yarn/terser-5.16.1
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/ua-parser-js-0.7.33
- dev-WPTEAM-422
- dev-hash-render-hotfix
- dev-red-color-support
- dev-no-print
- dev-debug-fix
- dev-performance
- dev-always-on
- dev-sessionless
This package is auto-updated.
Last update: 2024-11-03 17:36:25 UTC
README
DustPress Plugin: DustPress Debugger
DustPress Debugger is a WordPress plugin which displays the data loaded by your current DustPress model in a json viewer.
- Contributors: devgeniem / Nomafin, villesiltala
- Plugin url: https://github.com/devgeniem/dustpress-debugger
- Tags: dustpress, wordpress, plugins, dustjs, dust.js
- Requires at least: 4.2.0
- Tested up to: 5.3.0
- License: GPL-3.0
- License URI: http://www.gnu.org/licenses/gpl-3.0.html
Installation
Composer
Install with composer by running:
$ composer require devgeniem/dustpress-debugger
OR add it into your composer.json
:
{ "require": { "devgeniem/dustpress-debugger": "*" } }
Manually
- Clone the DustPress Debugger repository into you WordPress plugins directory.
Activation
To enable the debugger go to the WordPress dashboard and activate the plugin. After activation users with with the manage_options
capability can enable the debugger on the user profile page by checking the DustPress Debugger enabled
checkbox.
You can also activate the debugger on any user by defining DUSTPRESS_DEBUGGER_ALWAYS_ON
constant in your project. This will override the manual settings, so it is not recommended to use this setting in production!
Usage
Install the browser extension, open your devtools and select the "dustpress-debugger" tab. If on chrome you will need to request scripting & cookie access to the relevant urls when opening the view for the first time.
Building the browser extension
Select the specified node version in the .nvmrc
file by installing nvm and running:
nvm install # install specified node version nvm use # use specified node version
Or by installing it manually.
Then run the following commands:
npm ci # install npm packages npm run build # build the extensions assets
For a firefox build which uses manifest version 2 you can run:
npm run build -- --env=target=firefox
The built assets will be in the dist/
folder.
Development version
You can build the development version of the extension by running the commands specified in the building section but instead of npm run build
run the following:
npm run watch
Or for the firefox version:
npm run watch -- --env=target=firefox
This will build the assets and wait for changes to files.
Then add the contents of the dist/
folder as a temporary or unpackaged plugin depending on which browser you are using.
Add data with JavaScript
You can manually add data into the debugger by using the extend
function of the global debugger object in JavaScript. The first parameter is your data. The second parameter is the key under which your data is added. You can add multiple data sets under the same key.
window.DustPressDebugger.extend('someData', 'my-data-key');
If you are using the DustPress.js plugin, the data loaded via AJAX is automatically added into the debugger view.