publish-sftp
v1.0.6
Published
publish, sftp, ssh2, ssh, client
Downloads
15
Maintainers
Readme
Usage
Add sftp.json to the root of the project
// ./sftp.json
{
"localPath": "./dist",
"remotePath": "/export/App/xxx",
"protectedRemotePath": "/export/App/xxx",
"connect": {
"host": "xxx.xxx.xxx.xx",
"port": 22,
"username": "root",
"password": "123456"
}
}
Getting started
yarn add publish-sftp
复制 localPath 下所有文件到 remotePath/xjx/test, -c 参数为空则是复制到 remotePath, 远程目录不存在会先创建
copy
复制 localPath 下所有文件到 remotePath 目录下, 如果 xxx 有值则是复制到
${remotePath}/${xxx}
目录
publish-sftp -c xxx
remove
删除 remotePath 目录, 如果 xxx 有值则是删除
${remotePath}/${xxx}
目录
publish-sftp -r xxx
Tips
protectedRemotePath 字段为避免误操作增加,删除等危险操作涉及到该目录会立即终止 ⚠️