Error: Cannot find module 'express'
-
흐린캐럴
- 0건
- 178회
- 15-12-21 16:31
모듈을 -g 로 설치했는데 모듈을 못찾는 경우가 있습니다.
$ node meadowlark.js
module.js:339
throw err;
^
Error: Cannot find module 'express'
at Function.Module._resolveFilename (module.js:337:15)
at Function.Module._load (module.js:287:25)
at Module.require (module.js:366:17)
at require (module.js:385:17)
at Object.<anonymous> (/home/kagla/www/nodejs/web/ch05/meadowlark.js:1:77)
at Module._compile (module.js:435:26)
at Object.Module._extensions..js (module.js:442:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:311:12)
at Function.Module.runMain (module.js:467:10)
이때는 /usr/local/lib/load_modules 의 심볼릭 링크를 /usr/local/lib/node 로 하나 생성합니다.
ln -s /usr/local/lib/node_modules /usr/local/lib/node
그럼 정상적으로 실행이 될것 입니다.
$ node meadowlark.js
Express started on http://localhost:3000; press Ctrl-C to terminate.
등록된 댓글이 없습니다.