使用nodejs实现模拟jenkins打包发布vue项目工程
索洪波 2020-06-02 前端工具nodejsJenkins
项目迁移到内网开发之后,我们的Jenkins自动发版的频次受到极大限制。
虽然我们拥有服务器的密码,但是每次手动发版,还是麻烦的要死。于是,我模拟Jenkins逻辑写了一个node版本的自动发版程序
# 仓库地址和使用方式
使用方式:
> git clone https://github.com/shb190802/node-jenkins.git
> cd node-jenkins
> npm install
> node app.js
浏览器访问YOUR_IP_ADDRESS:3011
# 需求分析
首先分析,如果要做到自动发版需要实现哪些功能。
- 从相应仓库下载要发布的分支代码
- 编译代码
- 设置npm源
- 安装依赖
- 执行编译命令
- 将编译后的代码发布到服务器指定目录
# 技术实现
# 1、从相应仓库下载要发布的分支
此处使用download-git-repo,来完成从相应仓库下载要发布的分支代码。放置在一个临时目录下。
// 示例方法
let repository = `direct:${this.repo}#${this.branch}`
download(repository, destination, options, callback)
# 2、编译代码
编译代码我们使用child_process.exec来执行命令行命令来执行
// 示例方法
const COMMAND = ['npm config set registry http://registry.npm.taobao.org/', 'npm install', 'npm run build']
for (let i = 0, len = COMMAND.length; i < len; i++) {
await this.exec(COMMAND[i]) // 需要在async函数中
}
# 3、将编译后代码发送到服务器对应目录
这里使用到ssh2-sftp-client
// 示例方法
let client = new Sftp()
console.log('连接web服务器'.yellow)
await client.connect({
host: this.host,
username: this.username,
password: this.password
})
console.log(`mkdir ${this.remotePath}`.green)
await client.mkdir(this.remotePath, true)
console.log(`传输文件【${localPath}】===>【${this.remotePath}】`.green)
await client.uploadDir(localPath, this.remotePath) // 将本地文件夹传输到远程
console.log('文件传输完毕'.green)
client.end()
# 4、项目优化
前三步已经完成一个自动下载、打包、发布的流程。
我们可写出一个js文件,使用命令行工具【node+filename.js】来做到本机自动发版。
但是项目还有很多可以优化的地方。
# (1)将编译选项抽象成配置项
将配置选项从代码中抽象出来,我们将发版程序做的更加独立。
{
/** build config */
name: '聊天室 客户端',
repo: 'https://github.com/shb190802/chat.git', // 仓库地址
branch: 'master', // 编译分支 默认master
srcPath: 'client', // 项目编译目录,一般是vue.config.js所在目录
buildCommand: ['npm config set registry http://registry.npm.taobao.org/', 'npm install', 'npm run build'],
outputPath: 'server/static/html', // 编译目录 默认是srcPath下 dist
/* host config */
remotePath: '/usr/local/nginx/html/html', //YOUR_REMOTE web项目远程目录 注意,由于会提前清空远程目录。请慎重填写地址
host: '', // YOUR_HOST web服务器IP地址
username: '', // YOUR_NAME
password: '' // YOUR_PWD
}
# (2)重复使用node_modules
node的依赖安装,占到了打包的很大一部分时间。
我在这里处理方式是:
从仓库下载代码之前,先判断是否已经有过安装的node_modules目录。
如果有,就将它转移到一个临时目录。等待代码下载完成之后。在转移到编译目录下。
# 5、使用koa创建一个server端,给局域网内其他同事提供打包服务
即时完成了前边步骤,我们也还只是一个单机版的发版程序。
最后,我们使用koa建立一个简单的website。发布局域网内的同事。
静态页面和serviceApi的开发,此处就不在赘述了。
最终项目效果: