Documentation Index

Fetch the complete documentation index at: /docs/llms.txt

Use this file to discover all available pages before exploring further.

Skip to main content
The ctrl+c shortcut sends an interrupt signal to the running process. Intercept it by listening for the SIGINT event. To close the process, you must explicitly call process.exit().
process.ts
process.on("SIGINT", () => {
  console.log("Ctrl-C was pressed");
  process.exit();
});

See Utils for more utilities.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.