起因
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供達(dá)孜網(wǎng)站建設(shè)、達(dá)孜做網(wǎng)站、達(dá)孜網(wǎng)站設(shè)計(jì)、達(dá)孜網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、達(dá)孜企業(yè)網(wǎng)站模板建站服務(wù),10余年達(dá)孜做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
剛加入一個(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)
使用了插件ssh3-sftp-client,文檔有使用說明和api
寫書寫了一個(gè) sftp 模塊,連接完,直接導(dǎo)出
const Client = require('ssh3-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):
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對創(chuàng)新互聯(lián)的支持。