scroll/src/bun/index.ts

27 lines
521 B
JavaScript
Raw Normal View History

2023-10-31 14:47:59 -04:00
/**
* The main entrypoint when using Bun as the runtime
2023-10-31 14:47:59 -04:00
*/
2023-11-01 14:00:40 -04:00
import {Termios} from './termios'
2023-10-31 14:47:59 -04:00
export async function main(): Promise<number> {
2023-11-01 14:00:40 -04:00
const t = new Termios();
t.enableRawMode();
2023-10-31 14:47:59 -04:00
const decoder = new TextDecoder();
for await (const chunk of Bun.stdin.stream()) {
const char = String(decoder.decode(chunk)).trim();
if (char === 'q') {
2023-11-01 14:00:40 -04:00
t.disableRawMode();
2023-10-31 14:47:59 -04:00
return 0;
}
}
process.on("exit", (code) => {
console.log(`Process exited with code ${code}`);
2023-11-01 14:00:40 -04:00
t.disableRawMode();
});
2023-10-31 14:47:59 -04:00
return -1;
}