Skip to main content
function start
start(options?: string | ReplOptions): REPLServer
Deprecated

Deno compatibility

This symbol is not supported.

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('$ ');

Parameters

optional
options: string | ReplOptions

Return Type

Back to top