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.
What are
tobi
andloki
in the last example? Lets, vars, consts, functions, or classes?