使用nodejs + koa + typescript 集成和自动重启的问题
程序员文章站
2022-03-06 14:36:09
目录版本说明创建项目安装依赖填充内容src/server.tstsconfig.jsonpackage.json运行参考资料版本说明node.js: 16.13.1创建项目创建如下目录结构projec...
版本说明
node.js: 16.13.1
创建项目
创建如下目录结构
project ├── src │ └── server.ts ├── package.json └── tsconfig.json
package.json
可以使用 yarn init -y
生成tsconfig.json
可以使用 tsc --init
生成(需要全局或在项目中安装 typescript
包才可以使用 tsc
命令)
安装依赖
注意:
-
@tsconfig/node16
包需要根据node.js
的版本变化,我电脑上安装的是16.x.x
的版本,所以用的是@tsconfig/node16
,具体看 tsconfig/bases 中的说明,当然也可以完全不用安装这个包,这个包优点是公用性和主流推荐配置 -
typescript
如果已经全局安装过了,就从下面的命令中移除它 - concurrently 是一个并发执行多个命令的工具包
- nodemon 是一个监听文件变化自动重启程序的工具包
yarn add koa yarn add typescript @tsconfig/node16 @types/node @types/koa concurrently nodemon -d
填充内容
src/server.ts
import koa from 'koa'; const server: koa = new koa(); const port: number = 3000; server.use((ctx: koa.defaultcontext) => { ctx.body = 'hi koa'; }); server.listen(port, () => { console.log(`node.js v${process.versions.node}`); });
tsconfig.json
注意:extends
字段的值根据你安装的包名 @tsconfig/node**
替换
{ "extends": "@tsconfig/node16/tsconfig.json", "compileroptions": { "baseurl": ".", "rootdir": "src", "outdir": "dist", "noimplicitany": true, }, "include": [ "src/**/*" ] }
package.json
"scripts": { "build-ts": "tsc", "build": "yarn build-ts", "debug": "yarn build && yarn watch-debug", "serve-debug": "nodemon --inspect dist/server.js", "serve": "node dist/server.js", "start": "yarn serve", "watch-debug": "concurrently -k -p \"[{name}]\" -n \"typescript,node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm:watch-ts\" \"npm:serve-debug\"", "watch-node": "nodemon dist/server.js", "watch-ts": "tsc -w", "watch": "concurrently -k -p \"[{name}]\" -n \"typescript,node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm:watch-ts\" \"npm:watch-node\"" }
运行
我们的所有源码在 src
目录下,tsc
编译后的 js
文件在 dist
目录下,这是在 tsconfig.json
文件中指定的路径
本地开发:如果没有 dist
目录需要先执行 yarn build
去编译生成,然后再执行 yarn watch
部署生产:顺序执行 yarn build
、yarn serve
或 yarn start
(serve 和 start 是相同的命令)
参考资料
microsoft/typescript-node-starter
到此这篇关于nodejs + koa + typescript 集成和自动重启的文章就介绍到这了,更多相关nodejs koa typescript内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!