[오류]
1. Migrating from 3.x to 4.x
Express 4 no longer has Connect as a dependency.
This means that ALL bundled middleware (except static) is no longer available
on the express module. Each middleware is available as a module. (More on this below.)
URL: https://github.com/strongloop/express/wiki/Migrating-from-3.x-to-4.x
2. most middleware like logger is no longer bundled with express ...
[방법]
- 이전 버전을 사용을 위한 모듈 설치
project_www#] npm install express@3.4.7
URL: http://rintiantta.blog.me/40207853622
'Node.js' 카테고리의 다른 글
서버 실행 모듈 - supervisor 모듈/ forever 모듈 (0) | 2014.09.23 |
---|---|
단위 테스트 - assert/ should 모듈 (0) | 2014.09.23 |
nodejs web server 설정 (express 3.*) (0) | 2014.08.29 |