我正在尝试对 Node.JS REPL 进行评估。我收到错误消息TypeError: Property 'eval' of object #<REPLServer> is not a function
。这是我的源代码:
repl.start("> ", socket, socket, true, function(cmd, context, filename, callback){
etc...
我正在尝试对 Node.JS REPL 进行评估。我收到错误消息TypeError: Property 'eval' of object #<REPLServer> is not a function
。这是我的源代码:
repl.start("> ", socket, socket, true, function(cmd, context, filename, callback){
etc...
repl.start() 接受一个带有这些选项的对象,而不是单个参数:
例如(注意大括号)
repl.start({
prompt: "node via stdin> ",
input: process.stdin,
output: process.stdout
});
请参阅以下示例:http ://nodejs.org/docs/v0.8.4/api/repl.html#repl_repl_start_options