Control-C를 손쉽게 처리할 수 있는 도구
4369 단어 Node.js
Control-C를 손쉽게 처리할 수 있는 도구
npm에 도달하다.라고 포장했다.
예를 들어 다음과 같이 할 수 있다.
4
설치:
$ npm install control-c
사용 방법:
var ControlC = require('control-c');
예:
example.js
'use strict';
var ControlC = require('control-c');
var singleCount = 0;
var doubleCount = 0;
ControlC(
function singleControlC() { console.log('Single:', ++singleCount); },
function doubleControlC() { console.log('Double:', ++doubleCount); },
function tripleControlC() { console.log('Reset'); singleCount = doubleCount = 0; },
function quadrupleControlC() { console.log('Exit'); process.nextTick(process.exit); });
console.log('press control-c in 30 seconds.');
setTimeout(function () {}, 30000);
시도 방법:
$ node example
나는 Control-C 한 번은 일반적으로 할 수 있다고 생각한다.싱글 Control-C입니다.Control-C를 두 번 이상 연속하여 500ms 이내에 다음 Control-C를 계속 입력하십시오.
더블 클릭이 아닌 더블 Control-C 또는 세 배 Control-C의 느낌.
후기
물론 4번이나 5번 이상 Control-C 프로세서를 정의할 수도 있지만 손가락에 쥐가 날 것 같아서 몇 번 누르면 셀 수 없을 것 같다.
끝맺다
Reference
이 문제에 관하여(Control-C를 손쉽게 처리할 수 있는 도구), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/LightSpeedC/items/4a892f6ab0267d17799e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)