Skip to content

Commit

Permalink
updating readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Marak committed Sep 17, 2010
1 parent e3e4722 commit e2c4bd8
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions ReadMe.md
@@ -1,13 +1,33 @@
# nexpect _
| |
_ __ ___ __ __ _ __ ___ ___ | |_
| '_ \ / _ \\ \/ /| '_ \ / _ \ / __|| __|
| | | || __/ > < | |_) || __/| (__ | |_
|_| |_| \___|/_/\_\| .__/ \___| \___| \__|
| |
|_|


nExpect is a node.js module for spawning child applications and seamlessly controlling them using javascript callbacks. nExpect can be used for automating terminal applications such as ssh, ftp, passwd, telnet, etc. nExpect is based on the ideas of the Expect library by Don
nexpect is a node.js module for spawning child applications and seamlessly controlling them using javascript callbacks. nexpect can be used for automating terminal applications such as ssh, ftp, passwd, telnet, etc. nExpect is based on the ideas of the Expect library by Don
Libes and the pexpect library by Noah Spurrier. Libes and the pexpect library by Noah Spurrier.




It can be used to a automate setup It can be used to a automate setup
scripts for duplicating software package installations on different servers. It scripts for duplicating software package installations on different servers. It
can be used for automated software testing. can be used for automated software testing.


## installation

### installing npm (node package manager)
<pre>
curl http://npmjs.org/install.sh | sh
</pre>

### installing nexpect
<pre>
npm install nexpect
</pre>

# usage # usage


console.log('echo hello'); console.log('echo hello');
Expand Down

0 comments on commit e2c4bd8

Please sign in to comment.