상세 컨텐츠

본문 제목

모듈 사용해보기 / Javascript / Node.js

프레임워크+라이브러리/Express

by moonionn 2020. 7. 15. 23:53

본문

모듈화된 파일을 어떻게 만들고, 어떻게 불러오는지 알아보겠습니다.

syntax 연습을 위한 파일 생성

 

syntaxPractice.js 의 내용 (모듈이 될 파일)

const continent = 'Asia';
const country = 'South Korea';
const city = 'Seoul';

module.exports = {
  continent,
  country,
  city
}


//or


const myHomeTown = () => {
  return `I live in ${city}, ${country}, ${continent}`
};

module.exports = myHomeTown;

 

 

syntaxPractice2.js의 내용(모듈을 불러올 파일)

const {continent, country, city} = require('./syntaxPractice.js'); //.js는 생략 가능
console.log(`I live in ${city}, ${country}, ${continent}`);

//or

const myHomeTown = require('./syntaxPractice');
myHomeTown();

//result: I live in Seoul, South Korea, Asia 동일하게 출력

 

 

관련글 더보기

댓글 영역