932825434a1ff0ddef39d2b3cb5850d8f6a2b39c.svn-base 476 Bytes
/*
 * simple-prompt.js: Simple example of using prompt.  
 *
 * (C) 2010, Nodejitsu Inc.
 *
 */
 
var prompt = require('../lib/prompt');

//
// Start the prompt
//
prompt.start();

//
// Get two properties from the user: username and email
//
prompt.get(['username', 'email'], function (err, result) {
  //
  // Log the results.
  //
  console.log('Command-line input received:');
  console.log('  username: ' + result.username);
  console.log('  email: ' + result.email);
});