I've been playing around with using require() to import non-npm modules. One strange thing I've noticed, is that the console.log statements don't do anything in the files I used require() for. I did some research, and it turns out that the results should be in the terminal window, not the browser window.
I tried accessing the terminal window using Ctrl+Shift+J, but my log messages weren't there either.
So, how do I get to see them? As things are now, I can only see console.log messages from plugin scopes, not the private ones the require() method sets up.
I'm using MV 1.6.2. I'd appreciate help with this.