1.0.0 • Published 5 years ago

scp-async v1.0.0

Weekly downloads
5
License
ISC
Repository
github
Last release
5 years ago

scp-async

The SCP program wrapped in a Async Monad

usage

const scp = require('scp-async')

const config = {
  host: 'example.com',
  user: 'frank',
}

scp(config, '/home/frank/hi.txt', '/home/prod/hi.txt').fork(
  e => console.log('er'),
  x => console.log('ok')
)
1.0.0

5 years ago