BIG
ftp client 구현 샘플
Installation
shell> npm install ftp-client
Code Example
var ftpClient = require('ftp-client'),
config = {
host: 'localhost',
port: 21,
user: 'anonymous',
password: 'anonymous@'
},
options = {
logging: 'basic'
},
client = new ftpClient(config, options);
client.connect(function () {
client.upload(['test/**'], '/public_html/test', {
baseDir: 'test',
overwrite: 'older'
}, function (result) {
console.log(result);
});
client.download('/public_html/test2', 'test2/', {
overwrite: 'all'
}, function (result) {
console.log(result);
});
});
출처 : https://www.npmjs.com/package/ftp-client
LIST
'!!...nodejs' 카테고리의 다른 글
[nodejs] - 예제 02 - * 로 삼각형 그리기( For 문 ) (0) | 2022.12.02 |
---|---|
[nodejs] - 예제 01 - 별표(*) 로 삼각형 그리기( For 문 ) (0) | 2022.12.02 |
[nodejs] - puppeteer 환경 구성하기 (0) | 2020.08.25 |
[nodejs] - 웹 페이지 크롤링 티스토리 개인 관리자 로그인 후 캡쳐 - casperjs 모듈 이용 - (0) | 2017.05.30 |
[nodejs] - 웹 페이지 크롤링 샘플 01 - cheerio 모듈 이용 - (0) | 2017.05.29 |