/** * 读取node.js命令行输入内容的小工具 * * @api * exports.startStepByStep; * exports.readLine; * * @example * var prompt = require('prompt.js'); * prompt.startStepByStep({ * step1 : function(){ * prompt.readLine('请输入账号:',function(username){ * }); * }, * step2 : function(){ * prompt.readLine('请输入密码:',function(password){ * },true); * } * },0); * * @author zhaoxianlie */