반응형
Node.js 는 NPM 을 통해 module 들을 다운로드 & 붙여서 사용합니다.
module 이 제대로 연결되지 않은 경우에는 아래와 같은 에러가 발생합니다.
Error: Cannot find module 'qs'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:362:17)
at require (module.js:378:17)
at Object.<anonymous> (/Users/leechangkwon/whistle-server/src/routes/login.coffee:10:8)
at Object.<anonymous> (/Users/leechangkwon/whistle-server/src/routes/login.coffee:319:4)
at Module._compile (module.js:449:26)
at Object.require.extensions..coffee (/usr/local/lib/node_modules/coffee-script/lib/coffee-script/coffee-script.js:22:21)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
그럼 npm 을 통해서 해당 module 을 다운로드 해줘야 겠죠?
npm 을 수행하면 해당 폴더에 있는 npm-shrinkwrap.json 파일을 조회해서 관련된 module 파일들을 다운로드합니다.
$ npm install -d
위 명령으로 npm-shrinkwrap.json 에 명시되어 있는 dependency 가 있는 녀석들 모두를 download 합니다.
도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )
반응형
'프로그래밍 놀이터 > Web' 카테고리의 다른 글
[SDK] Titanium 이 뭔가요? ( from Appcelerator ) (0) | 2012.10.29 |
---|---|
[Script] CSS Tutorial ( 기초 강좌 ) (0) | 2012.10.15 |
[HTML] HTML5 에 대해 간단히 알아보자. ( 소개 ) (0) | 2012.10.06 |
[HTML] xhtml 이 뭔지 간단히 알아보자. (0) | 2012.10.06 |
[HTML] html multimedia 관련 태그들 (0) | 2012.10.06 |
댓글