skipper-ftp

2.8.0 • Public • Published

skipper emblem - face of a ship's captain Skipper FTP Adapter

npm npm

This is used to upload files directly to FTP server using skipper and node-ftp

Installation

$ npm install skipper-ftp --save

Also make sure you have skipper installed as your body parser.

Skipper is installed by default in Sails v0.10.

Usage

req.file('file')
.upload({
  adapter: require('skipper-ftp'),
  host: 'ftp.localhost',
  port:'21',
  username:'root',
  password:'root',
  path:'/'
}, function whenDone(err, uploadedFiles) {
  if (err) return res.negotiate(err);
  else return res.ok({
    files: uploadedFiles
  });
});
Option Type Details
host ((string)) An optional parameter of the host or domain/IP. Default value: localhost
port ((number)) An optional parameter for port. Default value :21
path ((string)) An optional parameter if you wish to save the file in a particular path in your file server. Default value :/
user ((string)) An optional parameter for authentication. Default value :root
password ((string)) An optional parameter for authentication. Default value :root

check node-ftp options for more

UploadedFiles

The meta data is returned along with extra which may contain error field. The error is going to return ana error encountered while uploading the file to your FTP server

Testing

  • Clone this repository

  • Install all development dependencies

$ npm install
  • Then run test
$ npm test

Contribute

Fork this repo and push in your ideas. Do not forget to follow skipper-adapter-test standards

License

MIT License (MIT)

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.8.0
    1
    • latest

Version History

Package Sidebar

Install

npm i skipper-ftp

Weekly Downloads

15

Version

2.8.0

License

MIT

Last publish

Collaborators

  • theo4u