Mobile web debugging tool developed based on react

Mobile web debugging tool developed based on react

Easy to use

Full-featured

Easy to expand

high performance

Use the cdn method, one-click access
Similar to Chrome devtools, supports log, network, storage…


This content originally appeared on DEV Community and was authored by html5@mobile

Mobile web debugging tool developed based on react

Easy to use

Full-featured

Easy to expand

high performance

Use the cdn method, one-click access Similar to Chrome devtools, supports log, network, storage, performance, etc., has better network capture capabilities and rich log display Expose rich internal events, which can be seamlessly integrated with react components Support large amount of data display, no lag

NPM Version PRs Node Version

github

https://github.com/tnfe/mdebug

Demos

https://tnfe.github.io/mdebug

Installation

Install using npm

npm install mdebug --save

Useage

1. ES6

  import mdebug from 'mdebug';
  mdebug.init();

2.CDN

(function() {
    var scp = document.createElement('script');
    // Load the latest mdebug version
    scp.src = 'https://unpkg.com/mdebug@latest/dist/index.js';
    scp.async = true;
    scp.charset = 'utf-8';
    // Successfully loaded and initialized
    scp.onload = function() {
        mdebug.init();
    };
    // Load state switch callback
    scp.onreadystate = function() {};
    // Load failed callback 
    scp.onerror = function() {};
    document.getElementsByTagName('head')[0].appendChild(scp);
})();

API

1. init

mdebug.init({
    containerId: '' // mdebug mounts the container id, if it is empty, a unique id will be automatically generated internally,
    plugins: [], // Incoming mdebug plugin
    hideToolbar: [], // Pass in the tab id that needs to be hidden
});

2. addPlugin

mdebug.addPlugin({
    id: '', // tab id
    name: '', // Chinese title corresponding to tab,
    enName: '', // English title corresponding to tab
    component: () => {}, // React component corresponding to tab
});

3. removePlugin

// Support the id of the panel to be removed
/*
System => system;
Elements => elements;
Console => console
Application => application
NetWork => network
Performance => performance
Settings => settings
*/
mdebug.removePlugin([]);

4. exportLog

/*
@returned {
  type: '' // Log type
  source: [], // Original log
}
@params type
// type is equal to log, return all console logs
// type is equal to net, return all net logs
*/
mdebug.exportLog(type);

5. on

mdebug.on(eventName, callback);

6. emit

mdebug.emit(eventName, data);

Event list

Event name params Trigger timing
ready object mdebug loaded
addTab object Add panel
removeTab array Remove panel
changeTab object Panel switch

development

  1. npm i
  2. npm start
  3. npm run build

License

The MIT License (MIT). Please see License File for more information.


This content originally appeared on DEV Community and was authored by html5@mobile


Print Share Comment Cite Upload Translate Updates
APA

html5@mobile | Sciencx (2021-08-26T10:12:35+00:00) Mobile web debugging tool developed based on react. Retrieved from https://www.scien.cx/2021/08/26/mobile-web-debugging-tool-developed-based-on-react/

MLA
" » Mobile web debugging tool developed based on react." html5@mobile | Sciencx - Thursday August 26, 2021, https://www.scien.cx/2021/08/26/mobile-web-debugging-tool-developed-based-on-react/
HARVARD
html5@mobile | Sciencx Thursday August 26, 2021 » Mobile web debugging tool developed based on react., viewed ,<https://www.scien.cx/2021/08/26/mobile-web-debugging-tool-developed-based-on-react/>
VANCOUVER
html5@mobile | Sciencx - » Mobile web debugging tool developed based on react. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/08/26/mobile-web-debugging-tool-developed-based-on-react/
CHICAGO
" » Mobile web debugging tool developed based on react." html5@mobile | Sciencx - Accessed . https://www.scien.cx/2021/08/26/mobile-web-debugging-tool-developed-based-on-react/
IEEE
" » Mobile web debugging tool developed based on react." html5@mobile | Sciencx [Online]. Available: https://www.scien.cx/2021/08/26/mobile-web-debugging-tool-developed-based-on-react/. [Accessed: ]
rf:citation
» Mobile web debugging tool developed based on react | html5@mobile | Sciencx | https://www.scien.cx/2021/08/26/mobile-web-debugging-tool-developed-based-on-react/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.