What is the module keyword in es6 module xxx from 'xx'? Why haven't you seen this usage?

learn "js you don"t know" Chapter 5-Future Module Mechanism. It"s not very clear to see here. Does es6 have a way to import modules into module?

 module foo from "foo";
 module bar from "bar";
 console.log(
     bar.hello( "rhino" )
 ); 
     

import can import one or more API from a module into the current scope and bind them to a variable (in our case, hello). Module imports the API of the entire module and binds it to a variable (foo and bar in our case). Export exports an identifier (variable, function) of the current module as a common API. These operations can be used as many times as needed in the module definition.

Jul.07,2022

you can take a look at this issue. The current usage should be import, not the module keyword
github issue

.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1bdcb10-30aa1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1bdcb10-30aa1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?