Giter Site home page Giter Site logo

deno_ctrlc's Introduction

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.

deno_ctrlc's People

Contributors

justjavac avatar tommywalkie avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

deno_ctrlc's Issues

Freezes TTY when receiving any other signal besides SIGINT

Hi, first of all, thank you making this utility module!

I recently noticed while accidentally pressing any button besides Ctrl+C it stops processing further inputs, resulting into freezing TTY. A currently used workaround is wrapping the reader into a recursive function.

function recursiveListen() {
    const data: Uint8Array = new Uint8Array(1);
    Deno.stdin.read(data).then(() => {
        if (disposed) return;
        if (data[0] === 0x03) {
            onCtrlC();
        }
        recursiveListen();
    });
}
recursiveListen()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.