I'm having problems using readline, every time I get the error No such built-in module: node:readline/promises. However according to Readline's own doc I would only need this part https://nodejs.org/api/readline.html
import * as readline from 'node:readline/promises';
import { stdin as input, stdout as output } from 'node:process';
const rl = readline.createInterface({ input, output });
I'm sorry if this is a question that has already been answered before, but I couldn't find anything that would help me.