+ 또는 서버 종료 에 대한 응답으로 Windows-8 호스팅 node.js 애플리케이션을 정상적으로 종료하기 위해 여기에 있는 지침 ( SIGINT
이벤트 수신 )을 따르고 있습니다.CtrlC
그러나 Windows에는 SIGINT
. 나도 시도 process.on('exit')
했지만 생산적인 일을하기에는 늦은 것 같습니다.
Windows에서이 코드는 다음을 제공합니다. 오류 : 해당 모듈 없음
process.on( 'SIGINT', function() {
console.log( "\ngracefully shutting down from SIGINT (Crtl-C)" )
// wish this worked on Windows
process.exit( )
})
Windows에서이 코드는 실행되지만 정상적으로 수행하기에는 너무 늦습니다 .
process.on( 'exit', function() {
console.log( "never see this log message" )
})
거기에 SIGINT
Windows에서 해당 이벤트는?