很多时候,我们可能想要用 typescript 语言来创建一些模块,并提交到 npm 供别人使用,
那么在 2018 年,如果我想要初始化这样的一个模块,我需要做哪些步骤呢?:
答案是:创建一个优雅的,对开发者友好的模块,至少需要以下 15 个步骤
初始化文件夹,初始化 git 仓库,初始化 npm,初始化 tsc
修改 tsconfig.js 配置
添加 npm 脚本
添加 tslint 校验代码规则以及 editorconfig,prettier 统一代码风格
设置 git 提交的校验钩子
开始编写代码
watch 模式开发
忽略 ts 编译生成的文件夹
添加单元测试
写一个单元测试示例
设置一些有用的 npm 脚本
完善 package.json 的描述信息
提交代码到 git 仓库
发布包到 npm
本篇文章里,我会列出每个步骤的详细说明。
实际开发中,如果每个包都去走一遍这些步骤,步骤好像确实有点多。所以如果你需要实际创建项目的时候,你可以选择 clone 我提供的样板项目 来开始一个新的 ts 模块的开发,主要步骤如下:
git clone https://github.com/xiaomingplus/npm-typescript-boilerplate.git your-project-name cd your-project-name # 安装依赖 npm i # 开始开发 npm start # 修改 package.json 里面的项目名和简介 # 修改 README.md 文件内容 # 修改 远程仓库的地址 git remote set-url origin your-git-url下面就是常规步骤了,学习目的的话,建议按照下面的步骤全部跑一遍:
1. 初始化文件夹,初始化 npm,初始化 tsc mkdir project-name cd project-name # 初始化git项目 git init # 添加gitignore文件 touch .gitignore # 复制这个地址的ignore内容到.gitignore <https://github.com/github/gitignore/blob/master/Node.gitignore> # 添加readme文件 echo "# My Awesome Typescript Project" >> README.md # 安装typescript npm install --save-dev typescript # 初始化npm包 npm init --y # 初始化tsconfig tsc --init 2. 修改 tsconfig.js 配置修改以下默认配置:
{ "compilerOptions": { "declaration": true, "outDir": "./lib", }, "include": ["src"], "exclude": ["node_modules", "**/__tests__/*"] }最终的 tsconfig 配置如下:
{ "compilerOptions": { "target": "es5", "module": "commonjs", "declaration": true, "strict": true, "outDir": "./lib", "esModuleInterop": true }, "include": ["src"], "exclude": ["node_modules", "**/__tests__/*"] } 3. 添加 npm 脚本在 package.json 里编辑 scripts 字段:
{ "scripts": { "start": "tsc -w", "build": "tsc" } } 4. 添加 tslint 校验代码规则以及 editorconfig,prettier 统一代码风格 npm install --save-dev prettier tslint tslint-config-prettier新建tslint.json文件
{ "extends": ["tslint:recommended", "tslint-config-prettier"], "rules": { "no-console": false, "object-literal-sort-keys": false, "member-access": false, "ordered-imports": false }, "linterOptions": { "exclude": ["**/*.json", "node_modules"] } }新建 .prettierrc 文件
{ "trailingComma": "all", "tabWidth": 4, "semi": false, "singleQuote": true, "endOfLine": "lf", "printWidth": 120, "overrides": [ { "files": ["*.md", "*.json", "*.yml", "*.yaml"], "options": { "tabWidth": 2 } } ] }新建 .editorconfig
# EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true # Unix-style newlines with a newline ending every file [*] end_of_line = lf insert_final_newline = true charset = utf-8 indent_style = space indent_size = 4 [{*.json,*.md,*.yml,*.*rc}] indent_style = space indent_size = 2添加一个便捷的 scripts 脚本:
{ "scripts": { "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json" } } 5. 设置 git 提交的校验钩子设置 git 提交的钩子校验规范
npm install --save-dev husky @commitlint/config-conventional @commitlint/cli commitizen cz-conventional-changelog新建 commitlint.config.js 文件
touch commitlint.config.js写入:
module.exports = { extends: ["@commitlint/config-conventional"] };新建 .huskyrc 文件
touch .huskyrc写入:
{ "hooks": { "pre-commit": "npm run format && npm run lint && npm test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }新建配置文件:
touch .czrc写入配置:
{ "path": "cz-conventional-changelog" }package.json 新增 scripts 配置:
{ "scripts": { "commit": "git-cz" } } 6. 开始编写代码 cd project-name mkdir src cd src touch index.ts写下你的第一行 ts 代码:
export const Greeter = (name: string) => `Hello ${name}`; 7. watch 模式下开发 npm start 8. 忽略 ts 编译生成的文件夹把/lib文件夹添加到.gitignore
/lib 9. 添加单元测试 npm install --save-dev jest ts-jest @types/jest创建 jestconfig.json文件:
{ "transform": { "^.+\\.(t|j)sx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"] }修改 package.json 里的 scripts 下的 test :
{ "scripts": { "test": "jest --config jestconfig.json" } } 10. 写一个单元测试示例