모듈화된 파일을 어떻게 만들고, 어떻게 불러오는지 알아보겠습니다.
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;
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 동일하게 출력
Node. js / 라우터 분기 처리 / 쿠키 수집 part 2 (0) | 2020.07.21 |
---|---|
Node.js / 라우터 분기 처리 / 쿠키 수집 (0) | 2020.07.20 |
Node.js / crypto module(단방향 암호화) / 해시 생성 (0) | 2020.07.17 |
Node.js란 무엇인가? (0) | 2020.07.04 |
Node.js 설치와 기본 실행법 (MacOS) (1) | 2020.06.30 |
댓글 영역