Node JS Basic 1
Node.js 사용 기본
node js 는 콘솔에 명령어를 입력하여 js 파일을 읽어 오고 모듈화 시킬 수 있다
function helloWorld(){
console.log('Hello World');
helloNode();
}
function helloNode(){
console.log('Hello Node');
}
helloWorld();
콘솔에 명령어를 입력한다
$ node helloWorld
모듈화 시켜서 여러 파일을 재사용하여 사용 하게 할 수 있다.
const odd = '홀수 입니다';
const even = '짝수입니다';
module.exports = {
odd,
even,
};
const {odd,even } = require('./var');
function checkOddOrEven(num){
if (num % 2){
return odd;
}
return even;
}
module.exports = checkOddOrEven;
require 내장 함수를 통해 불러올 모듈의 경로를 적어주고 모듈화를 시켜 줄땐 module.exports를 해주면 외부에서도 사용 할 수 있게 된다.
const { odd, even } = require("./var");
const checkNumber = require("./func");
function checkStringOddOrEven(str) {
if (str.length % 2) {
return odd;
}
return even;
}
console.log(checkNumber(10));
console.log(checkStringOddOrEven("hello"));