在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):liriliri/eruda开源软件地址(OpenSource Url):https://github.com/liriliri/eruda开源编程语言(OpenSource Language):JavaScript 82.2%开源软件介绍(OpenSource Introduction):ErudaDemoBrowse it on your phone: https://eruda.liriliri.io/ In order to try it for different sites, execute the script below on browser address bar. javascript:(function () { var script = document.createElement('script'); script.src="//cdn.jsdelivr.net/npm/eruda"; document.body.appendChild(script); script.onload = function () { eruda.init() } })(); Features
InstallYou can get it on npm. npm install eruda --save Add this script to your page. <script src="node_modules/eruda/eruda.js"></script>
<script>eruda.init();</script> It's also available on jsDelivr and cdnjs. <script src="//cdn.jsdelivr.net/npm/eruda"></script>
<script>eruda.init();</script> The JavaScript file size is quite huge(about 100kb gzipped) and therefore not suitable to include in mobile pages. It's recommended to make sure eruda is loaded only when eruda is set to true on url(http://example.com/?eruda=true), for example: ;(function () {
var src = '//cdn.jsdelivr.net/npm/eruda';
if (!/eruda=true/.test(window.location) && localStorage.getItem('active-eruda') != 'true') return;
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
document.write('<scr' + 'ipt>eruda.init();</scr' + 'ipt>');
})(); ConfigurationWhen initialization, a configuration object can be passed in.
For more information, please check the documentation. let el = document.createElement('div');
document.body.appendChild(el);
eruda.init({
container: el,
tool: ['console', 'elements']
}); Plugins
If you want to create a plugin yourself, follow the guides here. Related Projects
BackersContributionRead Contributing Guide for development setup instructions. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论