//__dirname - pwd 느낌, 현재 위치(경로) - path to current directory // __filename - file name // require - 모듈을 사용하기 위한 함수 function to use modules(CommonJS) // module - 현재 모듈에 대한 인포 info about current module (file) // process - 프로그램이 실행 되는 환경변수의 인포 info about env where the program is being executed //names.js const secret = 'SUPER SECRET' const john = 'john' const peter = 'peter' module.exports = {john,p..