nexpect
is a node.js module for spawning child applications (such as ssh) and seamlessly controlling them using javascript callbacks. nexpect is based on the ideas of the expect library by Don Libes and the pexpect library by Noah Spurrier.
node.js has good built in control for spawning child processes. nexpect
builds on these core methods and allows developers to easily pipe data to child processes and assert the expected response. nexpect
also chains, so you can compose complex terminal interactions.
$ curl http://npmjs.org/install.sh | sh
$ npm install nexpect
The core method, nexpect.spawn(command, [params], [options])
, takes three parameters:
- command: The command that you wish to spawn
- params: The argv that you want to pass to the child process
- options: An object literal which may contain
- cwd: Current working directory of the child process.
- ignoreCase: Ignores the case of any output from the child process.
- stripColors: Strips any ANSI colors from the output for
.expect()
and.wait()
statements. - verbose: Writes the stdout for the child process to
process.stdout
of the current process.
Lets take a look at some sample usage:
var nexpect = require('nexpect');
nexpect.spawn("echo", ["hello"])
.expect("hello")
.run(function (err) {
if (!err) {
console.log("hello was echoed");
}
});
nexpect.spawn("ls -la /tmp/undefined")
.expect("No such file or directory")
.run(function (err) {
if (!err) {
console.log("checked that file doesn't exists");
}
});
nexpect.spawn("node")
.expect(">")
.sendline("console.log('testing')")
.expect("testing")
.sendline("process.exit()")
.run(function (err) {
if (!err) {
console.log("node process started, console logged, process exited");
}
else {
console.log(err)
}
});
If you are looking for more examples take a look at the examples, and tests.
All tests are written with vows:
$ npm test