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