Node.js require vs ES2015 import/export
Node.js에서 사용할 수 있는 module system:Importing modules using require, and exporting using module.exports and exports.fooImporting modules using ES6 import, and exporting using ES6 export. 그럼 둘 간의 차이는?require() from NodeJS (CommonJS)dynamic loading을 할 수 있다.synchronous (여러 개를 require하면 순차적으로 처리) import from ES6named import를 사용할 수 있고, import하는 대상을 온전히 로딩하는게 아니고, 그 중 필요한 부분만 destructuring처럼 가져올 수 있어서 메모..