node.js notes
- Nest
- Development
- Category
- node.js
- Hit
- 575
- Star
- 0
console.log()를 사용할때 출력 메세지 다음에 undefined메세지가 나올때..
터미널에서 console.log()를 사용하지않고 그냥 문자나 변수를 입력하면 값이 나온다.
> var foo = "bar";
> foo;
bar
그래도 console.log()를 사용하여 undefined를 출력하지 않게 하려면... module.exports.repl.ignoreUndefined =true;
이 메세지를 적어서 실행해주면 된다.
node.js 버전 업그레이드
http://theholmesoffice.com/node-js-fundamentals-how-to-upgrade-the-node-js-version/