😫

【JavaScript】ES ModulesとCommonJSのimport

2022/06/01に公開

何回もどっちがどっちか分からなくなってるので表題に関する自戒も含めたメモです。

ES Modules

  • JavaScriptにおけるスタンダードなモジュール
  • Node.jsのデフォルトはCommonJSだが、設定次第でサポートされる
import * as bootstrap from 'bootstrap';

CommonJS

  • Node.jsで採用
const bootstrap = require('bootstrap'); 

Discussion