Skip to main content

[TS] ts-axios(25) - 编译发布


需求分析

前面的章节我们完成 ts-axios 库的代码编写和单元测试。这一章我们希望把代码部署发布到公共 npm 上,供别人下载使用。但是并不是所有人都会使用 TypeScript 开发,仍然有大量的 JavaScript 用户,它们是不能直接引用 TypeScript 代码的,因此我们需要先对源码做编译和打包,然后再发布。

由于我们会把包发布到公共的 npm 源,如果你还没有 npm 账号,那么需要先去官网注册。注册完成后,可以去终端执行 npm login 登录。这个步骤非常重要,决定你最终能否发布成功。

编译和打包

我们会利用 rollup 来打包我们的 ts-axios 库,它是一个非常著名的编译打包工具,Vue.js 也是利用 rollup 编译打包的。相比 webpack,它非常适合去编译和打包一些 JS 库。

由于使用 typescript-library-starter 初始化我们的项目,我们已经拥有了 rollup 打包的相关配置和相关插件的安装,接下来我们就来对生成的 rollup.config.ts 做小小的修改。

修改 rollup.config.ts

import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import sourceMaps from 'rollup-plugin-sourcemaps'
import camelCase from 'lodash.camelcase'
import typescript from 'rollup-plugin-typescript2'
import json from 'rollup-plugin-json'

const pkg = require('./package.json')

const libraryName = 'axios'

export default {
input: `src/index.ts`,
output: [
{ file: pkg.main, name: camelCase(libraryName), format: 'umd', sourcemap: true },
{ file: pkg.module, format: 'es', sourcemap: true }
],
// Indicate here external modules you don't wanna include in your bundle (i.e.: 'lodash')
external: [],
watch: {
include: 'src/**'
},
plugins: [
// Allow json resolution
json(),
// Compile TypeScript files
typescript({ useTsconfigDeclarationDir: true }),
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
commonjs(),
// Allow node_modules resolution, so you can use 'external' to control
// which external modules to include in the bundle
// https://github.com/rollup/rollup-plugin-node-resolve#usage
resolve(),

// Resolve source maps to the original source
sourceMaps()
]
}

注意要修改的地方,把 libraryName 修改为 axiosinput 修改为 src/index.ts

rollup 的配置很简单,我们简单地过一下。

  • input

表示打包入口文件。

  • output

表示输出的目标文件,它是一个对象数组,我们可以指定输出的格式,比如 umd 格式、es 模式等。

  • external

声明它的外部依赖,可以不被打包进去。

  • watch

监听文件的变化,重新编译,只有在编译的时候开启 --watch 才生效。

  • plugins

编译过程中使用的插件,其中 rollup-plugin-typescript2 就是用来编译 TypeScript 文件,useTsconfigDeclarationDir 表示使用 tsconfig.json 文件中定义的 declarationDir。其它插件感兴趣的同学可以自己去查阅文档。

修改 package.json

由于我们已经在 rollup.config.ts 中修改了 libraryNameaxios, 那么在 package.json 文件中你需要做相关的修改:

{
"main": "dist/axios.umd.js",
"module": "dist/axios.es5.js",
"typings": "dist/types/index.d.ts"
}

然后我们在控制台执行 npm run build,会编译输出 dist 目录,其中 lib 目录是单个 .ts 文件编译后的 .js 文件。types 目录是所有 .ts 文件编译后生产的 .d.ts 声明文件。axios.es5.js 是编译后生成的 es 模式的入口文件,用在 package.jsonmodule 字段,axios.umd.js 文件是编译后生成的 umd 模式的入口文件,用在 package.jsonmain 字段。

自动化部署

由于 semantic-release 插件过于黑盒也略微重量,我还是决定教同学们自己编写自动化部署脚本,这样更灵活,意义也更大,因为大部分场景是用不到那么多 feature 的。

修改 package.json

发布到 npm 之前你需要为你的包命名,由于 ts-axios 这个名字已经被占用了,我使用了 ts-axios-new 这个名称,当然你学到这里,就需要起一个新名字了。可以使用 npm view [<@scope>/]<pkg>[@<version>] 的方式去搜索一个包名是否已经存在,比如你搜索 npm view ts-axios-new 会发现这个包已经存在,返回这个包相关信息。如果你搜索 npm view xxxx 返回错误 404 的话,那么你就可以使用 xxxx 这个包名了。

如果你想让你发布的包关联你的仓库地址,可以配置 repositoryurl 字段。

另外我们增加 2 个 npm scripts:

{
"prepub": "npm run test:prod && npm run build",
"pub": "sh release.sh"
}

当我们运行 npm run pub 的时候,会优先执行 prepub 脚本,在 prepub 中我们运行了 test:prodbuild 2 个脚本。&& 符号表示前面一个命令执行成功后才会执行后面的任务。

npm run test:prod 实际上运行了 npm run lint && npm run test -- --no-cache。 先运行 lint 去校验我们的源码和测试文件是否遵循 tslint 规范,再运行 test 去跑测试。

npm run build 实际上运行了 tsc --module commonjsrollup -c rollup.config.tstypedoc --out docs --target es6 --theme minimal --mode file src。先运行 tsc 去编译我们的 TypeScript 文件,dist/libdist/types 下的文件就是该命令产生的,然后运行 rollup 去构建 axios.umd.jsaxios.es.js,最后运行 typedoc 去构建项目的文档。

运行完 prepub 后就会再运行 pub 命令,实际上执行了 sh release.sh 命令,但是目前我们没有这个脚本,接下来我们就需要来编写部署脚本 release.sh

编写部署脚本

release.sh

#!/usr/bin/env sh
set -e
echo "Enter release version: "
read VERSION
read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Releasing $VERSION ..."

# commit
git add -A
git commit -m "[build] $VERSION"
npm version $VERSION --message "[release] $VERSION"
git push origin master

# publish
npm publish
fi

部署脚本是 shell 脚本,shell 脚本就是封装了多行控制台命令,来逐行解释他们的含义。

#!/usr/bin/env sh 用来表示它是一个 shell 脚本。

set -e 告诉脚本如果执行结果不为 true 则退出。

echo "Enter release version: " 在控制台输出 Enter release version:

read VERSION 表示从标准输入读取值,并赋值给 $VERSION 变量。

read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r,其中 read -p 表示给出提示符,后面接着 Releasing $VERSION - are you sure? (y/n) 提示符;-n 1 表示限定最多可以有 1 个字符可以作为有效读入;-r 表示禁止反斜线的转义功能。因为我们的 read 并没有指定变量名,那么默认这个输入读取值会赋值给 $REPLY 变量。

echo 输出空值表示跳到一个新行,# 在 shell 脚本中表示注释。

if [[ $REPLY =~ ^[Yy]$ ]] 表示 shell 脚本中的流程控制语句,判断 $REPLY 是不是大小写的 y,如果满足,则走到后面的 then 逻辑。

echo "Releasing $VERSION ..." 在控制台输出 Releasing $VERSION ...

git add -A 表示把代码所有变化提交到暂存区。

git commit -m "[build] $VERSION" 表示提交代码,提交注释是 [build] $VERSION

npm version $VERSION --message "[release] $VERSION" 是修改 package.json 中的 version 字段到 $VERSION,并且提交一条修改记录,提交注释是 [release] $VERSION

git push origin master 是把代码发布到主干分支。

npm publish 是把仓库发布到 npm 上,我们会把 dist 目录下的代码都发布到 npm 上,因为我们在 package.json 中配置的是 files["dist"]

运行部署脚本

接下来我们就运行 npm run pub 脚本部署,我们会发现在 npm run prepub 阶段,在执行 tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts' 的时候失败了,原因是我们有代码不符合 lint 规范。原来是 core/xhr.ts 文件中 processCancel 函数中对 promise 的处理,我们没有对异常情况处理,所以我们要给它加上 catch 的逻辑:

function processCancel(): void {
if (cancelToken) {
cancelToken.promise
.then(reason => {
request.abort()
reject(reason)
})
.catch(
/* istanbul ignore next */
() => {
// do nothing
})
}
}

由于我们不会走到 catch 逻辑,所以我们给它添加一个注释 /* istanbul ignore next */ 忽略该代码分支的测试。

然后我们再重新运行 npm run pub 逻辑,它会先执行 test,然后运行 build 编译代码,再执行 release.sh 脚本。我们输入了要发布的版本,它就可以完成了整个代码的发布流程。

通过编写部署脚本的一行命令发布的方式,不仅可以用在这种 JS 库,也可以用于我们平时项目开发中,可以大大帮助我们提高生产率,也是前端工程化中必不可少的一个环节,希望同学们都能学会并掌握它。

至此我们完成了项目的部署和发布,我们也可以在 npm 官网上看到我们发布的包,下一节课我们来创建一个实际项目,来引用我们开发的 ts-axios 库。


在 TS 项目中引用

我们借助于 vue-cli 脚手架创建一个 TypeScript 的 Vue 项目,然后我们把 Vue 官网上一段使用 axios 发请求的 demo 代码抄过来。

我们需要先执行 npm install ts-axios-new 安装 ts-axios 库。

HelloWorld.vue

<template>
<div class="hello">
<p>
Ask a yes/no question:
<input v-model="question">
</p>
<p>{{ answer }}</p>
</div>
</template>

<script lang="ts">
import Vue from 'vue'
import _ from 'lodash'
import axios from 'ts-axios-new'

export default Vue.extend({
name: 'HelloWorld',
data () {
return {
question: '',
answer: 'I cannot give you an answer until you ask a question!'
}
},
created () {
this.debouncedGetAnswer = _.debounce(this.getAnswer, 500)
},
methods: {
debouncedGetAnswer () {
// do nothing
},
getAnswer () {
if (this.question.indexOf('?') === -1) {
this.answer = 'Questions usually contain a question mark. -)'
return
}
this.answer = 'Thinking...'
const instance = axios.create()
instance.interceptors.request.use((config) => {
config.params = {
_t: +new Date()
}
return config
})

instance.get('https://yesno.wtf/api')
.then((response) => {
this.answer = _.capitalize(response.data.answer)
})
.catch((error) => {
this.answer = 'Error! Could not reach the API. ' + error
})
}
},
watch: {
question: function (newQuestion: string, oldQuestion: string) {
this.answer = 'Waiting for you to stop typing...'
this.debouncedGetAnswer()
}
}
})
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}

ul {
list-style-type: none;
padding: 0;
}

li {
display: inline-block;
margin: 0 10px;
}

a {
color: #42b983;
}
</style>

这段代码主要是提供了一个 input 输入框,绑定了 question 变量,当我们输入的时候,会触发 question 的变化,执行 watch question 中的逻辑,执行 this.debouncedGetAnswer 方法,实际上就是 debounce 执行了 getAnswer 方法,发送请求。

我们通过 import axios from 'ts-axios-new' 去加载 ts-axios 库,实际上就是引入了 node_modules/ts-axios-new/dist/axios.es5.js,因为 ts-axios-newpackage.json 文件中配置的 module 字段是 dist/axios.es5.js,在 webpack 中优先 import 优先会找 module 字段,其次是 main 字段。

小技巧:当我们引入某个库运行时出现问题时候,我们就可以调试 node_modules 中对应引入的代码。

注意我们这里先使用了 axios.create() 方法创建了一个 instance,然后添加了一个请求拦截器,会在每次发送请求前,添加了一个 _t 参数,值为时间戳。然后执行 instance.get 发送一个请求。

我们可以看到整个 demo 是可以正常运行的,并且没有任何类型相关的问题,说明我们的库打包后的代码和类型声明文件都是没有问题的。

在 JS 项目中引用

我们编写的 TS 库仍然可以被纯 JS 的项目引用,这次我们来修改《Vue.js2.5+cube-ui重构饿了么App》课程的代码,把之前对 axios 的引用改成对 ts-axios-new 的引用。课程源码是开源的,所以没购买课程的小伙伴也可以去 GitHub 下载。

我们需要先执行 npm install ts-axios-new 安装 ts-axios 库,然后修改代码。

api/helpers.js

import axios from 'ts-axios-new'

const urlMap = {
development: '/',
production: 'http://ustbhuangyi.com/sell/'
}
const baseUrl = urlMap[process.env.NODE_ENV]
const ERR_OK = 0

export function get(url) {
return function(params = {}) {
return axios.get(baseUrl + url, {
params
}).then((res) => {
const {errno, data} = res.data
if (errno === ERR_OK) {
return data
}
}).catch((e) => {
})
}
}

只需要把 import axios from 'axios' 修改为 import axios from 'ts-axios-new' 即可。

接着运行项目,我们发现项目可以成功运行,因为我们实现了axios 在浏览器端的所有功能,所以可以放心的做替换。

至此,我们就完成了 ts-axios 库的开发、测试、编译、发布和引用。课程到这里也就告一段落了,下一章我们会对整个课程做总结与展望。