Echo JS 0.11.0

<~>
hbgincake 1566 days ago.
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.

tracker1 1566 days ago. link 1 point
Are you meaning the Chrome/Firefox console?  Or firebug as an integrated console extension.  You can definitely debug mjs with the developer console.