0.0.7 • Published 8 years ago

ftp-node v0.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

ftp

A semi-nonsense ftp client module for nodejs

Why?

Because i already made sftp-node and I'm too lazy typing code and ftp by mscdex(brian white) is amazing!

functions

upload(credentials,remoteFilePath,localFilePath)

Uploads the file

var ftp = require('ftp-node');


var options = {
  host: 192.168.0.0,
  port: 22,
  username: user,
  password: pass
};

ftp.upload(options, 'path/to/remote/file', 'path/to/local/file');

That's it! 3 lines of code then it uploads your file!

No defaults! defaults sucks and makes it hard to debug

Now go and tell your boss that you are awesome!

##TODO add other functions add async?

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago