Ok so http://wiki.ecmascript.org/doku.php?id=harmony:modules looks more less the same as it did last time I looked, however that document combined with https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-06/jun-5-modules.md#do-we-need-the-module-foo-from-foo-import-syntax looks like we're conflating quite a few concepts (IMO... not trying to anger anyone).
Personally I'm in favour for removing module
as mentioned in the gist. I would also remove re-exporting (export * from "crypto"
), even if it's a nicety I can't say out I've done much re-exporting in the thousands and thousands of modules I've written, does anyone else do this often? (not sure)
Personally (barring weird edge-cases I'm not aware of?) I would love if we only had exporting a single or multiple value, with only one syntax for importing. For example the common use-case of exporting a single function or value:
ferret.js
export {
name: 'tobi',
color: 'white'
}
some.js
import tobi from "ferret"
The word "from" would arguably be incorrect here, so maybe "as" or no keyword at all, just import tobi "ferret"
like Go does (reads a little weird?).
I'm assuming we can detect multiple exports without using export default
since they're static:
ferrets.js
export tobi {
name: 'tobi',
color: 'white'
}
export loki {
name: 'loki',
color: 'brown'
}
or with =
(less confusing?)
ferrets.js
export tobi = {
name: 'tobi',
color: 'white'
}
export loki = {
name: 'loki',
color: 'brown'
}
other types:
ferrets.js
export tobi = 'Tobi Ferret'
export loki = 'Loki Ferret'
some.js
import ferrets from "ferrets"
ferrets.tobi
ferrets.loki
some.js
import {tobi, loki} from "ferrets"
I'm not sure if there was reasoning behind doing export let foo = 'bar'
and export function foo(){
but to me it's more confusing and requires more reading than having the name on the far left. Although in the case of a function, and now classes (?) you need the name anyway, so I can understand that, but it definitely reads weird to me.
The syntax of exports is sort of bikeshedding on my behalf but the main thing I'm wondering about is why we can't just have the two keywords and maybe the destructuring.
The problem is that there's a conflict between what the designers of ES6 modules want, where multiple exports are a distinct "thing", and what the community is used to, where multiple exports just means exporting an object with some properties.
This gets particularly hairy when combined with default exports. We're used to doing default exports, and if we want other stuff, we use properties of that export. E.g.
They would like a world where the
sync
export becomes a "real export", which can be statically checked, bound across module boundaries, etc. So they'd door even
Note that in these cases,
glob.sync
will not work like we're used to.Thus, the on-its-way-out
module x from "y"
syntax. It would always be an object, containing all exports.This would be most useful for modules with lots of exports, like
fs
.A final thing to consider: the existing CommonJS pattern falls down hard if you want to combine a default export with another export named e.g.
constructor
orbind
. See https://gist.github.com/domenic/23dfe87fc921735de04c for more musings on that.