View on GitHub

programming-study

허원철의 개발 블로그

첫 번째 노드 프로젝트 만들기

> node 02.example.js
02. 노드 간단하게 살펴보기

> node
> console.log('hello node');
hello node

콘솔에 로그 뿌리기

console.log('숫자 보여주기\t: %d', 10);
console.log('문자열 보여주기\t: %s', '허원철');
console.log('JSON 객체 보여주기\t: %j', {name : '허원철', birth_year : 1992});

프로세스 객체 간단하게 살펴보기

노드에서 모듈 사용하기

// [ 02.module.js ]
exports.mod = () => {
    console.log('module.js');
};
// [ 02.example.js ]
const moduleFunc = require('./02.module');
moduleFunc.mod(); // module.js

외장 모듈

> npm init
> npm install {패키지명}

내장 모듈