ドキュメントからREPLに組み込まれたnodejsで遊んでみます。
http://nodejs.org/api/repl.html
アイテムを追加する例は次のとおりです。
repl.start().context.m = msg;
複数のメニューを追加する方法が見つからないようです。私はやってみました:
menus = {m = 'hello', f = 'foo'}
repl.start().context = menus
しかし、それもうまくいきません。私は得る:
testREPL> m
TypeError: needs a 'context' argument.
at REPLServer.self.eval (repl.js:113:21)
at Interface.<anonymous> (repl.js:250:12)
at Interface.EventEmitter.emit (events.js:88:17)
at Interface._onLine (readline.js:199:10)
at Interface._normalWrite._line_buffer (readline.js:308:12)
at Array.forEach (native)
at Interface._normalWrite (readline.js:307:11)
at Socket.ondata (readline.js:90:10)
at Socket.EventEmitter.emit (events.js:115:20)
at TCP.onread (net.js:395:14)
これを機能させる方法を知っている人はいますか?