Skip to content

hughsk/sshconf-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sshconf-stream Build Status

Magic-free streaming SSH config parser/stringifier.

Given this ~/.ssh/config file:

Host raspberry
  HostName 192.168.2.54
  User pi

You can get this output:

var ssh = require('sshconf-stream')
  , fs = require('fs')

fs.createReadStream('/home/hughsk/.ssh/config', 'utf8')
  .pipe(ssh.createParseStream())
  .on('data', function(host) {
    console.log(host.keywords['Host'])         // ['raspberry']
    console.log(host.keywords['HostName'])     // ['192.168.2.54']
    console.log(host.keywords['User'])         // ['pi']
    console.log(host.keywords['LocalForward']) // undefined
  })

About

Magic-free streaming SSH config parser/stringifier.

Resources

License

Stars

Watchers

Forks

Packages

No packages published