'Module'에 해당되는 글 1건

  1. 2014.08.29 express module

express module

Posted by 단순대왕 Node.js : 2014. 8. 29. 12:04

[오류]

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


  
 «이전 1  다음»