Top "Es6-module-loader" questions

ES6 Module Loader Polyfill dynamically loads ES6 modules in browsers and NodeJS with support for loading existing and custom module formats through loader hooks.

"You may need an appropriate loader to handle this file type" with Webpack and Babel

I am trying to use Webpack with Babel to compile ES6 assets, but I am getting the following error message: …

javascript webpack babeljs es6-module-loader
Importing lodash into angular2 + typescript application

I am having a hard time trying to get the lodash modules imported. I've setup my project using npm+gulp, …

javascript angular typescript lodash es6-module-loader
ES6: import module from URL

Is it possible to import javascript module from external url in ES6? I tried (using babel-node): import mymodule from 'http://...…

javascript ecmascript-6 es6-modules es6-module-loader
How do I extend another VueJS component in a single-file component? (ES6 vue-loader)

I am using vue-loader (http://vuejs.github.io/vue-loader/start/spec.html) to construct my *.vue single-file components, but I …

javascript ecmascript-6 vue.js es6-module-loader
Path aliases for imports in WebStorm

I use webpack path aliases for ES6 module loading. E.g. If I define an alias for utils instead of …

javascript webstorm webpack es6-module-loader
Which browsers support import and export syntax for ECMAScript 6?

I am currently writing a web application using the MEAN Stack, and am attempting to write code in ECMAScript 6 JavaScript; …

javascript ecmascript-6 es6-module-loader browser-support es6-modules
export / import single class method using ES6 modules?

Let's say I have a simple class like this in fileA.js: class foo { constructor(x) { this.name = x } fooMethod(…

javascript ecmascript-6 es6-module-loader
Module.exports and es6 Import

React with babel. I have this confusion with imports and module.exports. I assume babel when converting the ES6 code …

javascript babeljs es6-module-loader
How to import everything exported from a file with ES2015 syntax? Is there a wildcard?

With ES2015 syntax, we have the new import syntax, and I've been trying to figure out how to import everything …

javascript ecmascript-6 es6-module-loader
TypeError: __webpack_require__.i(...) is not a function

I am getting a webpack TypeError when I am trying to simplify an import. The following code works without any …

reactjs webpack ecmascript-6 babeljs es6-module-loader