ES6 module debug on DevTool
▼1 up and 0 down, posted by
1 up and 0 down, posted by
Debugging with FireBug console is one of my favorite things I can do with Chrome. This makes debugging much much easier. However, today’s js library has been published as ES6 module. ES6 module requires import to access inside of it. This means you cannot use FireBugs console to debug / interact with it. One way may be possible is to Import myscript.module.js from html. Use dynamic import in FireBug console. However, this makes you to use dynamic import the module every time you want to debug. Is this true? I hope it’s not.