Skip to content

Cross platform handling of Ctrl-C signals.

License

Notifications You must be signed in to change notification settings

justjavac/deno_ctrlc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deno_ctrlc

Cross platform handling of Ctrl-C signals.

Try it

deno run https://deno.land/x/ctrlc/example.ts

Usage

import { Disposable, setHandler } from "https://deno.land/x/ctrlc/mod.ts";

const ctrlc: Disposable = setHandler(() => {
  Deno.exit();
});

console.log("press ctrl + c, will exit");
// loop

License

deno_ctrlc is released under the MIT License. See the bundled LICENSE file for details.