Node.js 모듈 - Common JS
Node.js 모듈
module.exports
와 require
키워드를 사용
모듈 만들고, 가져오기
calc.js
의 함수를 모듈화 ->node.js
를 통해서 ->index.js
로 가져오기
calc.js
const add = (a, b) => a + b;
const sub = (a, b) => a - b;
module.exports = {
moduleName: "calc module",
add: add,
sub: sub,
};
index.js
const calc = require("./calc");
console.log(calc);
모듈 내 함수 사용하기
index.js
const calc = require('./calc');
console.log(calc.add(1, 2));
console.log(calc.add(4, 5));
console.log(calc.add(10, 2));
참고
Author And Source
이 문제에 관하여(Node.js 모듈 - Common JS), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hoho_0815/Node.js-모듈-Common-JS저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)