nodeJS - module??

roberto·2021년 6월 3일

counter.js


let count = 0;
function increase() {
 count ++;
 }
 
 function getCount() {
 	return count;
 }
 
 

다른모듈에서 쓰려면
1. export 정하고
2. import 명시해야함

module.export.getCount = getCount;

exports 사용할때는 특정한값 바로 할당하면 안된다

이슈 ...

자바스크립트 내부적으로 동작하는 import 와 export

profile
medium 으로 이전했습니다

0개의 댓글