첫번째. console 콘솔창에 결과를 보여주는 객체

>> https://jinn-o.tistory.com/55

 

console 객체 : console.log 만 있는게 아니었어?

console 객체에 대하여 >> console 에 관한 공식문서이다. 다음을 참고하는 것이 더 자세하고 정확하다. https://nodejs.org/dist/latest-v14.x/docs/api/console.html#console_console_assert_value_message 먼저..

jinn-o.tistory.com

 

 

 

 

두번째. 프로세스 실행에 대한 정보를 다루는 객체

>> https://jinn-o.tistory.com/56

 

process 객체 (+OS 객체)

process 객체에 대하여 console.log("argv 속성의 파라미터 수 : " + process.argv.length); console.log(process.argv); if (process.argv.length > 2) { console.log('세 번째 파라미터 값 : ' + process.argv[2..

jinn-o.tistory.com

 

 

 

★ 세번째. exports 모듈을 다루는 객체

>> https://jinn-o.tistory.com/57

 

★ 노드에서 모듈 사용하기 :: exports.module

★ 모듈에 대하여 /* counter.js 파일 내부 */ let counter = 0; function increase() { counter ++; } function decrease() { counter --; } function getCount() { return counter; } module.exports.increase =..

jinn-o.tistory.com

 

+ Recent posts