events
-
[Node.js] Node.js w3schools Tutorial - Day.3programming/node.js 2019. 11. 19. 00:00
*해당 내용은 https://www.w3schools.com/nodejs/ 의 튜토리얼을 따라 하며 정리하는 글입니다. [Day1] [Day2] What is NPM? NPM은 Node.js를 위한 패키지 매니저다. Node.js가 설치될 때, NPM은 같이 설치된다. node -v로 node.js 버전이 확인 가능하다면(node.js가 설치되었다면) npm -v로 설치된 npm버전도 확인 가능하다(npm도 설치되었다.) Download a Package 설치된 node.js에서 아래 코드를 실행시켜 보자. 1 2 3 var uc = require('upper-case'); console.log(uc("hello world!!")); 모듈을 찾을 수 없다고 뜰 것이다. Error: Cannot find ..