Modulescan export a few things. Modules can also have one export by default.
import exp from "somelib";
This sets the somelibdefault export for the variable exp.
import {a, b} from "somelib";
a b a b.
import exp, {a, b} from "somelib";
exp, a b.
import * as somelib from "somelib";
somelib somelib, , somelib.a, somelib.b ..
: http://www.2ality.com/2014/09/es6-modules-final.html