Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ES6 module import is not defined during debugger

While playing around with Babel and Webpack I stumbled into some really weird behavior today.

I threw a debugger in my main.js to see if I was importing correctly, but Chrome's console kept yelling that the module I was trying to import was not defined. I try console logging the same module instead, and I see it printed to my console.

What gives? I've pasted the relevant code snippets below:

main.js

import Thing from './Thing.js';

debugger // if you type Thing into the console, it is not defined

console.log(new Thing()); // if you let the script finish running, this works

thing.js

class Thing {
}

export default Thing;

webpack.config.js

var path = require('path');
module.exports = {
    entry: './js/main.js',
    output: {
        path: __dirname,
        filename: 'bundle.js'
    },
    module: {
        loaders: [
            { test: path.join(__dirname, 'js'), loader: 'babel-loader' }
        ]
    }
};
like image 420
Salar Avatar asked May 11 '15 06:05

Salar


2 Answers

tl;dr: Babel does not necessarily preserve variables names.


If we look at the code generated from

import Thing from './Thing.js';

debugger;

console.log(new Thing());

namely:

'use strict';

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }

var _ThingJs = require('./Thing.js');

var _ThingJs2 = _interopRequireDefault(_ThingJs);

debugger;

console.log(new _ThingJs2['default']());

We see that Things is not defined indeed. So Chrome is correct.

like image 140
Felix Kling Avatar answered Oct 16 '22 14:10

Felix Kling


In some debugging scenarios, it may be sufficient to assign the imported variable to a new variable in local scope. For example:

import Thing from './Thing.js';
const TestThing = Thing;

debugger; // although Thing will not be defined, TestThing will be defined

console.log(new TestThing());

This doesn't fix the core issue at hand, but it can be a workaround for debugging in certain situations.

like image 35
ethaning Avatar answered Oct 16 '22 15:10

ethaning