Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
// Import the readline module const readline = require('readline'); // Create an Interface instance const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); console.log('Interface created successfully!'); // Close the interface after a short delay setTimeout(() => { rl.close(); process.exit(0); }, 1000);
Interface created successfully!