0.0.3 • Published 12 years ago

stdask v0.0.3

Weekly downloads
2
License
MIT
Repository
-
Last release
12 years ago

stdask gives a simple interface for asking the user for command line inputs

Installation

npm install stdask

API The second argument is an optional regex filter with which the users input will be processed

ask( questionString, optionalRegexFilter, callback )

Usage

var ask = require("./stdask").ask;

ask("Enter your name", function(name) {
	ask("Enter your email", /^.+@.+$/, function(email) {
	    console.log("Your name is: ", name);
	    console.log("Your email is:", email);
	 
	    process.exit();
  	});
});