node-ftp-cli
v1.0.4
Published
ftp command line tool, based on npm 'ftp' package
Downloads
33
Maintainers
Readme
node-ftp-cli
A command line tool based on npm ftp package
Install
You can install globally or locally.
Global
- Install
$ npm install -g node-ftp-cli
- get help
$ node-ftp --help
Local
- Install
$ npm install node-ftp-cli
- package.json
{
"script": {
"node-ftp": "node node_modules/.bin/node-ftp"
}
}
- get help
npm run node-ftp --help
Usage
we can confirm usage help by node-ftp --help
, by default node-ftp-cli
will look for the ftp.config.js
in your current folder.
we can use options like node-ftp --config my-ftp.config.js ....
to specific the config file. Settings can we refer Here
// ftp.config.js
module.exports = {
host: 'ftpupload.net.xxxx',
port: 21,
user: '12345678',
password: 'aabbccdd12345',
keepalive: 10000,
}
Cli Usage
- remotepath: remote file path
- localpath: local file path
- remotefolder: remote folder path
- localfolder: local folder path
- outputpath: output folder path
--list [remotefolder]
list files name in specific remote path folder
$ node-ftp --list /htdocs
--get [remotepath] [-o [outputpath]]
download target file from ftp server, optionally to outputpath, if -o
is not specific, current path will be used
$ node-ftp --get /htdocs/index.html -o ./dist
--put/--append [localpath] -t [remotepath]
upload target file to ftp server
$ node-ftp --put/--append index.html -t /htdocs
--rm [remotepath]
delete target file on ftp server
--rename [remotepath/remotefolder] -t [remotepath/remotefolder]
rename an remote path to new path
$ node-ftp --rename /htdocs/index.html -t /htdocs/index.php
--mkdir [remotefolder]
create new folder on ftp server, if the folder already exist, will do nothing
--rmdir [remotefolder] [-r]
delete remote folder on ftp server, -r
for recursive
--getdir [remotefolder] [-o [outputpath]]
download target folder
$ node-ftp --getdir /htdocs -o ./myftp
--putdir [localfolder] -t [remotefolder] [--unzip]
upload target folder to ftp server, if target file already exist, will overwrite the existing file, if target folder existed, will only append new files to that folder
- ./dist/index.html => /htdocs/dist/index.html
$ node-ftp --putfir dist -t /htdocs
with --unzip
, we can extract files from specific folder to the target folder
- ./dist/index.html => /htdocs/index.html
$ node-ftp --putdir dist -t /htdocs --unzip
for putdir, appenddir methods, we can set the
excludes
as array of string/regexp in options. value will be directly use inmatch
method to exclude files or folder.
module.exports = {
host: '',
password: '',
// ...
excludes: [/node_modules/],
}
--appenddir [localfolder] -t [remotefolder] [--unzip]
upload target folder to ftp server, if target file already exist, will not overwrite the existing file.
Script Usage
if you need more custom usage, you can easily require the initFtp
function for custom usage.
// find below usable methods
const { initFtp, listFiles } = require('node-ftp-cli');
const ftpOptions = {
config: {
host: 'aaaa.net',
password: '123',
// ...
},
ready: onFtpReady,
};
// ready function should be a promise
async function onFtpReady(client) {
const { files } = await listFiles(client, '/');
console.dir(files);
// will auto close client once this ready promise resolved
}
// init connect
initFtp(ftpOptions);
Usable functions:
// exports of node-ftp-cli
module.exports = {
cwd,
listFiles,
getFile,
putFile,
appendFile,
removeFile,
renamePath,
mkdir,
rmdir,
getdir,
putdir,
appenddir,
initFtp,
}