node.js Connect 모듈 테스트중 has no method 'router'


iisnode encountered an error when processing the request.
HRESULT: 0x2
HTTP status: 500
HTTP reason: Internal Server Error
You are receiving this HTTP 200 response because system.webServer/iisnode/@devErrorsEnabled configuration setting is 'true'.
In addition to the log of stdout and stderr of the node.exe process, consider using debugging and ETW traces to further diagnose the problem.
The last 64k of the output generated by the node.exe process to stderr is shown below:
Application has thrown an uncaught exception and is terminated:
TypeError: Object function createServer() {
  function app(req, res, next){ app.handle(req, res, next); }
  utils.merge(app, proto);
  utils.merge(app, EventEmitter.prototype);
  app.route = '/';
  app.stack = [];
  for (var i = 0; i < arguments.length; ++i) {
    app.use(arguments[i]);
  }
  return app;
} has no method 'router'
    at Object.<anonymous> (C:\Users\wwforever.NOWCOM\Documents\My Web Sites\鍮� �ъ씠��server.js:3:30)
    at Module._compile (module.js:449:26)
    at Object.Module._extensions..js (module.js:467:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:362:17)
    at require (module.js:378:17)
    at Object.<anonymous> (C:\Program Files (x86)\iisnode-dev\release\x86\interceptor.js:211:1)
    at Module._compile (module.js:449:26)
    at Object.Module._extensions..js (module.js:467:10)


 connect 모듈 테스트중 이와 같은 에러가 발생하네요.


var connect = require('connect');
 
connect.createServer(connect.router(function (app) {
 
})).listen(process.env.PORT);


 소스는 이게 다입니다. 확인해보니 Connect 모듈이 작년에 2.0이 되면서? router가 빠져버렸다는군요.

 임시방편으로 테스트를 해야하니 NPM에서 connect_router를 찾아 설치하면 됩니다.


var connect = require('connect');
var router = require('connect_router');
 
connect.createServer(router(function (app) {
 
})).listen(process.env.PORT);


 이런식으로 사용하면 되는거죠. 임시 방편일뿐 아마 Express 프레임워크를 사용하게 되면 다른 방법으로도 가능하지 않을까 하네요. 이렇게?

댓글

이 블로그의 인기 게시물

'xxx.exe' 프로그램을 시작할 수 없습니다. 지정된 파일을 찾을 수 없습니다.

goorm IDE에서 node.js 프로젝트로 Hello World Simple Server 만들어 띄워보기

애드센스 수익을 웨스턴 유니온으로 수표대신 현금으로 지급 받아보자.