Node.js 모듈 - Common JS

4390 단어 node.jsnode.js

Node.js 모듈

module.exportsrequire 키워드를 사용


모듈 만들고, 가져오기

  • 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));


참고

좋은 웹페이지 즐겨찾기