Fstart
Bun

function

repl.start

function start(
options?: string | ReplOptions

The repl.start() method creates and starts a REPLServer instance.

If options is a string, then it specifies the input prompt:

import repl from 'node:repl';

// a Unix style prompt
repl.start('$ ');