国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > JS > 正文

node.js自動(dòng)上傳ftp的腳本分享

2024-05-06 16:44:55
字體:
供稿:網(wǎng)友

起因

剛加入一個(gè)小組的項(xiàng)目開發(fā),開發(fā)環(huán)境是基于node環(huán)境,通過webpack打包構(gòu)建代碼,然后上傳sftp,在瀏覽器測試。這種開發(fā)模式無可厚非,但是每次修改源代碼,然后build,然后upload,不勝其煩。之前項(xiàng)目中有過 gulp-sftp任務(wù)腳本,然而并不是生效。于是自力更生,另謀他法,搞一個(gè)自動(dòng)上傳sftp的服務(wù)腳本

設(shè)想

因?yàn)榛趙ebpack,所以直接啟動(dòng)webpack編譯的watch監(jiān)聽即可,在watch回調(diào)里執(zhí)行stfp的上傳,上傳去npm社區(qū)找一個(gè)sftp的客戶端插件

實(shí)現(xiàn)

使用了插件ssh2-sftp-client,文檔有使用說明和api

寫書寫了一個(gè) sftp 模塊,連接完,直接導(dǎo)出

const Client = require('ssh2-sftp-client');const fs = require('fs');const sftp = new Client();sftp .connect({ host: '0.0.0.0', // ftp服務(wù)器ip地址 port: '22', // ftp服務(wù)器port username: 'yourname', // 你的登錄用戶名 password: 'yourpass', // 你的密碼 privateKey: fs.readFileSync('/Users/yourname/.ssh/id_rsa'), // 私鑰 passphrase: 'yourpass', // 私鑰密碼 }) .then(() => { console.log('ftp文件服務(wù)器連接成功'); }) .catch(err => { console.log(err, 'catch error'); });module.exports = sftp;

然后在webpack的watch里進(jìn)行 上傳文件即可,關(guān)于上傳文件,圖片的等類型需要使用Buffer類型上傳,做一個(gè)特殊處理

const path = require('path');const fs = require('fs');const yargs = require('yargs');const webpack = require('webpack');const webpackConfig = require('./webpack.prod.config');const sftp = require('./sftp');const user = yargs.argv.user || '';console.log(user);const staticFilesPath = { js: { local: path.resolve(__dirname, '../dist/js'), remote: `/upload_code/${user}/static/mobile/js/dist`, }, css: { local: path.resolve(__dirname, '../dist/css'), remote: `/upload_code/${user}/static/mobile/css/`, }, img: { local: path.resolve(__dirname, '../dist/images'), remote: `/upload_code/${user}/static/mobile/images/`, },};let isFirstBuild = true;const compiler = webpack(webpackConfig);const watching = compiler.watch( { ignored: /node_modules/, aggregateTimeout: 100, poll: 1000, }, (err, stats) => { if (err || stats.hasErrors()) {  console.log(err); } console.log('編譯成功!'); if (isFirstBuild) {  isFirstBuild = false;  return; } console.log('正在上傳...'); uploadFile()  .then(() => {  console.log('------所有文件上傳完成!-------/n');  })  .catch(() => {  console.log('------上傳失敗,請檢查!-------/n');  }); });/*** 處理文件路徑,循環(huán)所有文件,如果是圖片需要讀取成Buffer類型**/function handleFilePath(obj, type) { const { local, remote } = obj; const files = fs.readdirSync(local); return files.map(file => { const _lp = `${local}/${file}`; return {  type: type,  file: file,  localPath: type !== 'img' ? _lp : fs.readFileSync(_lp),  remotePath: `${remote}/${file}`, }; });}/*** 上傳文件**/function uploadFile() { let files = []; Object.keys(staticFilesPath).forEach(key => { files = files.concat(handleFilePath(staticFilesPath[key], key)); }); const tasks = files.map(item => { return new Promise((resolve, reject) => {  sftp  .put(item.localPath, item.remotePath)  .then(() => {   console.log(`${item.file}上傳完成`);   resolve();  })  .catch(err => {   console.log(`${item.file}上傳失敗`);   reject();  }); }); }); return Promise.all(tasks);}

注意點(diǎn):

  • 連接sftp服務(wù)器,推薦使用 私鑰文件連接,使用password出錯(cuò)可能性比較大
  • 上傳文件部分,目前不支持上傳一個(gè)目錄,所以需要循環(huán)處理文件
  • 上傳文件部分,容易出錯(cuò),一定要保證遠(yuǎn)端服務(wù)器存在對應(yīng)目錄,目前插件沒有自動(dòng)創(chuàng)建目錄的機(jī)制

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對VeVb武林網(wǎng)的支持。


注:相關(guān)教程知識(shí)閱讀請移步到JavaScript/Ajax教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 西峡县| 绥芬河市| 阳江市| 定兴县| 织金县| 巩留县| 佛坪县| 康乐县| 绍兴市| 崇明县| 留坝县| 河西区| 福海县| 溧水县| 类乌齐县| 平利县| 磐安县| 达尔| 新化县| 旬阳县| 璧山县| 银川市| 轮台县| 黄石市| 宝坻区| 恭城| 贵阳市| 长丰县| 洱源县| 红河县| 浦江县| 万全县| 锦屏县| 南昌市| 梅河口市| 湖南省| 汶川县| 通城县| 离岛区| 杭锦旗| 五华县|