我无法在Chrome控制台中导入模块

时间:2019-04-23 09:07:53

标签: javascript node.js google-chrome module

我目前正在使用Chrome控制台(ctrl + shift + i)研究简单的Javascript代码。下面的代码给了我一个错误。

module.exports = function () { // Uncaught ReferenceError : module is not defined
    console.log('a function in file foo');
};

所以我尝试导入模块,但是它说模块未定义。

import module // Uncaught SyntaxError : Unexpected identifier

当前,我无法下载任何IDE。那么,我想知道如何在Chrome浏览器中专门使用关键字模块?

0 个答案:

没有答案