πŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more β†’
Socket
Sign inDemoInstall
Socket

ftp-simple

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ftp-simple

simple ftp

0.3.2
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
Β 
Created
Source

ftp-simple

  • Only FTP (Not support sftp. sftp use the easy-ftp)
  • κ°„λ‹¨ν•œ μ„€μ •λ§ŒμœΌλ‘œ νŽΈλ¦¬ν•˜κ²Œ FTP κΈ°λŠ₯을 μ΄μš©ν•  수 μžˆμŠ΅λ‹ˆλ‹€.

Caution

If Node.js version is 8 or higher, use 0.3.0 or higher. Otherwise, use version 0.2.7.

Install

Node.js version is 8 or higher

npm install ftp-simple

Otherwise

npm install ftp-simple@0.2.7

Usage

var FTP = require('ftp-simple');
var config = {
    host: '',
    port: 21,
    username: '', //or user
    password: ''  //or pass
};
var ftp = FTP.create(config);




//폴더 λ³€κ²½(directory change)
ftp.cd("/", function(err, path){});	

//파일 or 폴더 μ‚­μ œ(ν•˜μœ„ 파일 및 폴더 포함)(file or directory remove(recursive))
ftp.rm("/filename", function(err){});	

//폴더 생성(ν•˜μœ„ 폴더 포함 생성)(make directory)
ftp.mkdir("/directory", function(err){});	

//파일 or 폴더 이동 ν˜Ήμ€ 이름 λ³€κ²½(file or directory move or change filename)
ftp.mv("/filename", "/newFilename", function(err, newPath){});	

//폴더 λ‚΄ 파일λͺ©λ‘ λ°˜ν™˜(show files in directory)
ftp.ls("/directory", function(err, list){});	

//ftp μ„œλ²„μƒμ˜ ν˜„μž¬ μž‘μ—… 경둜 λ°˜ν™˜(return server path)
ftp.pwd(function(err, path){});	

//μ„œλ²„μ— 파일이 μ‘΄μž¬ν•˜λŠ”μ§€ μ—¬λΆ€ λ°˜ν™˜(boolean)
ftp.exist("/filename", function(exist){});


//파일 or 폴더 μ—…λ‘œλ“œ(file or directory upload)
ftp.upload("/test.txt", "/test.txt", function(err){});  	//result => /test.txt
ftp.upload("/test.txt", "/test123.txt", function(err){});  //result => /test123.txt 
ftp.upload("/test.txt", "/", function(err){});			//result => /test.txt
ftp.upload("/directory", "/", function(err){});			//result => /directory

//Array - Object({local:'localPath', remote:'remotePath'})
var arr = [{local:"/test.txt", remote:"/test.txt"}, {local:"/test1.txt", remote:"/abcd/test2.txt"}, {local:"/directory", remote:"/"}];
ftp.upload(arr, function(err){});	// 2 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - String
var arr = ["/test.txt", "/abcd/test2.txt", "/directory"];
ftp.upload(arr, "/", function(err){});	// 3 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - Object and String
var arr = [{local:"/test.txt", remote:"/directory/test.txt"}, "/abcd/test2.txt", "/directory"];
ftp.upload(arr, "/", function(err){});	// 3 arguments;
/* result
/directory/test.txt
/abcd/test2.txt
/directory
*/


//파일 or 폴더 λ‹€μš΄λ‘œλ“œ(file or directory download)
ftp.download("/test.txt", "/test.txt", function(err){});	//result => /test.txt
ftp.download("/test.txt", "/test123.txt", function(err){});	//result => /test123.txt 
ftp.download("/test.txt", "/", function(err){});		//result => /test.txt 
ftp.download("/directory", "/", function(err){});		//result => /directory 

//Array - Object({local:'localPath', remote:'remotePath'})
var arr = [{remote:"/test.txt", local:"/test.txt"}, {remote:"/test1.txt", local:"/abcd/test2.txt"}, {remote:"/directory", local:"/"}];
ftp.download(arr, function(err){});	// 2 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - String
var arr = ["/test.txt", "/abcd/test2.txt", "/directory"];
ftp.download(arr, "/", function(err){});	// 3 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - Object and String
var arr = [{remote:"/test.txt", local:"/directory/test.txt"}, "/abcd/test2.txt", "/directory"];
ftp.download(arr, "/", function(err){});	// 3 arguments;
/* result
/directory/test.txt
/abcd/test2.txt
/directory
*/



//접속 μ’…λ£Œ(disconnect)
ftp.close();	

API

Static Method

  • create(< object >config)

    • host - string - server domain or ip Default: '127.0.0.1'
    • port - number - port (default : 21)
    • username - string - username for authentication.
    • password - string - password for authentication.
    • type - string - This is a value that can use other settings.
    • secure - boolean - Explicit FTPS over TLS, default: false
    • secureOptions - object - Options for TLS, same as for tls.connect() in Node.js.

    [Node.js version is 8 or higher]

    Please refer to 'https://www.npmjs.com/package/basic-ftp' if this is 'ftp' and 'https://www.npmjs.com/package/ftp' if it is 'ftp2'. The 'secure' option is available regardless of 'type'. The default is 'ftp'.

    [Otherwise]

    Please refer to 'https://www.npmjs.com/package/jsftp' if this is 'ftp' and 'https://www.npmjs.com/package/ftp' if it is 'ftp2'. The 'secure' option is available for 'ftp2'. The default is 'ftp'.

Methods

  • cd(< string >path, < function >callback) - Changes the working directory. callback has 1 parameter: < Error >err.

  • rm(< string >path, < function >callback) - Deletes a file or directory(include child files) path on the server. callback has 1 parameter: < Error >err.

  • mkdir(< string >path, < function >callback) - Creates a new directory recursive. callback has 1 parameter: < Error >err.

  • mv(< string >oldPath, < string >newPath, < function >callback) - Renames or Move oldPath to newPath on the server. callback has 2 parameter: < Error >err, < String >newPath.

  • ls(< string >path, < function >callback) - Retrieves the directory listing of path. callback has 2 parameter: < Error >err, < Array >list.

    • name - string - file name
    • size - number - file size
    • type - string - file type. 'd' => directory, 'f' => file
    • date - date - file last modified date
  • pwd(< function >callback) - Retrieves the current working directory. callback has 2 parameters: < Error >err, < string >cwd.

  • exist(< function >callback) - whether a file or direcotry exists. callback has 1 parameters: < boolean >exist.

  • upload(< mixed >localPath, < string >remotePath, < function >callback) - Sends data to the server to be stored as remotePath. If direcotry path, include self directory and child files. If you want only child files, localPath is "/directory/**". callback has 1 parameter: < Error >err.

    • file - ex) upload("/test.txt", "/a/b/test.txt", ...) => result : /a/b/test.txt
    • directory - ex) upload("/directory", "/a/b", ...) => result : /a/b/directory
    • only child files - ex) upload("/directory/**", "/a/b", ...) => result : /a/b/child files...
    • array - ex) upload(["/directory/**", "/test.txt"], "/a/b", ...) => result : "/a/b/test.txt" and "/a/b/child files..."
  • download(< mixed >remotePath, < string >localPath, < function >callback) - Retrieves a file or directory at path from the server. If directory path, include child files. callback has 1 parameter: < Error >err.

    • file - ex) download("/test.txt", "/a/b/test.txt", ...) => result : /a/b/test.txt
    • directory - ex) download("/directory", "/a/b", ...) => result : /a/b/directory
    • only child files - ex) download("/directory/**", "/a/b", ...) => result : /a/b/child files...
    • array - ex) download(["/directory/**", "/test.txt"], "/a/b", ...) => result : "/a/b/test.txt" and "/a/b/child files..."
  • close() - Closes the connection to the server after any/all enqueued commands have been executed.

Event

  • open(< FTPClient >client) - Emitted when connection and authentication were sucessful.

  • close - Emitted when the connection has fully closed.

  • error(< Error >err) - Emitted when the connection has fully closed.

  • upload(< string >uploadedRemotePath) - Emitted when file or directory uploaded.

  • download(< string >downloadedLocalPath) - Emitted when file or directory downloaded.

Examples

//Connect
var FTP = require('ftp-simple');
var config = {
    host: '',
    port: 21,
    username: '', //or user
    password: ''  //or pass
};
var ftp = FTP.create(config);




/* 
Ex) Directory structure
/test/test.txt
/test/child1
/test/child1/image.png
/test/child1/child2
/test/child1/child2/shell.sh
*/

//Case1. files Upload
//"/test/test.txt", "/test.txt"   or   "/test/test.txt", "/"
ftp.upload("/test/test.txt", "/test.txt", function(err){
	ftp.close();
});
/* result
/test.txt
*/



//Case2. child files Upload
// '/test/**' or '/test/*'
ftp.upload("/test/**", "/", function(err){
	ftp.close();
});
/* result
/test.txt
/child1
/child1/image.png
/child1/child2
/child1/child2/shell.sh
*/



//Case3. directory Upload
ftp.upload("/test", "/", function(err){
	ftp.close();	
});
/* result
/test/test.txt
/test/child1
/test/child1/image.png
/test/child1/child2
/test/child1/child2/shell.sh
*/

//Case4. Multi file Upload
//Array - Object({local:'localPath', remote:'remotePath'})
var arr = [{local:"/test.txt", remote:"/test.txt"}, {local:"/test1.txt", remote:"/abcd/test2.txt"}, {local:"/directory", remote:"/"}];
ftp.upload(arr, function(err){ftp.close();});	// 2 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - String
var arr = ["/test.txt", "/abcd/test2.txt", "/directory"];
ftp.upload(arr, "/", function(err){ftp.close();});	// 3 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - Object and String
var arr = [{local:"/test.txt", remote:"/directory/test.txt"}, "/abcd/test2.txt", "/directory"];
ftp.upload(arr, "/", function(err){ftp.close();});	// 3 arguments;
/* result
/directory/test.txt
/abcd/test2.txt
/directory
*/



//Case5. file download
//"/test/test.txt", "/test.txt"   or   "/test/test.txt", "/"
ftp.download("/test/test.txt", "/test.txt", function(err){
	ftp.close();	
});
/* result
/test.txt
*/



//Case6. direcotry download
ftp.download("/test", "/", function(err){
	ftp.close();	
});
/* result
/test/test.txt
/test/child1
/test/child1/image.png
/test/child1/child2
/test/child1/child2/shell.sh
*/



//Case7. Multi file download
//Array - Object({local:'localPath', remote:'remotePath'})
var arr = [{remote:"/test.txt", local:"/test.txt"}, {remote:"/test1.txt", local:"/abcd/test2.txt"}, {remote:"/directory", local:"/"}];
ftp.download(arr, function(err){ftp.close();});	// 2 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - String
var arr = ["/test.txt", "/abcd/test2.txt", "/directory"];
ftp.download(arr, "/", function(err){ftp.close();});	// 3 arguments;
/* result
/test.txt
/abcd/test2.txt
/directory
*/

//Array - Object and String
var arr = [{remote:"/test.txt", local:"/directory/test.txt"}, "/abcd/test2.txt", "/directory"];
ftp.download(arr, "/", function(err){ftp.close();});	// 3 arguments;
/* result
/directory/test.txt
/abcd/test2.txt
/directory
*/

Keywords

ftp

FAQs

Package last updated on 09 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts