利用Node.js监控文件变化并使用sftp上传到服务器
首先,我们使用 npm 安装两个别人封装好的模块。
npm install ssh2-sftp-client
npm install gaze
1
2
2
第一个模块的作用是 sftp 上传文件,
第二个模块的作用就是监听文件变化了。当然,你也可以采用 node 自带 fs 模块。
这两个模块的用法在这里:ssh2-sftp-client gaze
安装好了以后,第一步就是监听文件的变化了,由于我的文件已经使用 webpack 构建好了,所以后面只是文件变化,不会有文件增加,所以这里只需要使用 changed 就可以了,其他的用法请参考上面的链接,都大同小异
gaze(['你的文件路径 /*.*','还可以使用数组的方式监听多个文件夹 /app.js'], function(err, watcher) {
let watched = this.watched();
// 监听文件的变化
this.on('changed', (filepath) => {//romotePath 是我文件的远程位置
let romotePath = '/root' + filepath.substr(15);
//put 为上传文件的函数,下面会讲
put(filepath,romotePath);
console.log(filepath + 'was changed');
});
});
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
然后就开始写我们的上传文件的函数
function put(localPath,romotePath){
let sftp = new Client();
sftp.connect({
host: '你的服务器地址',
port: '端口,没改过的话是 22',
username: '连接的用户名',
password: '密码'
}).then(() => {
return sftp.put(localPath,romotePath);
}).then(() =>{
console.log("上传完成");
}).catch((err) => {
console.log(err, 'catch error');
});
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
好了,别忘了在我们的文件开始的地方可是要引入模块的。
let Client = require('ssh2-sftp-client');
let gaze = require('gaze');
1
2
2
这样,我们的文件监听和上传就完成了。
上次更新: 2024/04/07, 16:22:38
- 02
- Node与GLIBC_2.27不兼容解决方案08-19
- 03
- Git清空本地文件跟踪缓存08-13