이제 패키지로 만들 코드를 작성합니다. 요즘은 CommonJS 모듈과 ES 모듈을 모두 지원하는 패키지를 만드는 것이 추세입니다. 따라서 CommonJS인 index.js와 ES 모듈인 index.mjs 파일 두 개를 만듭니다.
index.js
module.exports = () => {
return 'hello commonjs module';
};
index.mjs
export default () => {
return 'hello es module';
};