Version Notes Node.js: Create a projectCreate the following directory structure project ├── src │ └── server.ts ├── package.json └── tsconfig.json
Install DependenciesNotice:
yarn add koa yarn add typescript @tsconfig/node16 @types/node @types/koa concurrently nodemon -D Filling contentsrc/server.tsimport 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 Note: The value of the { "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\"" } run All our source code is in the Local development: If there is no Deployment production: execute Referencesmicrosoft/TypeScript-Node-Starter This is the end of this article about nodejs + koa + typescript integration and automatic restart. For more related nodejs koa typescript content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Example of implementing hollow triangle arrow and X icon with after pseudo element
>>: Chinese and English font name comparison table (including Founder and Arphic)
Not only do different browsers behave differently...
1. Download 1. Click the latest download from the...
Preface The docker image cannot be deleted. Check...
Navicat reports errors 10060 and 1045 when connec...
Preface In the previous interview process, when a...
First, perform a simple Docker installation. To c...
1. What is an index? An index is a data structure...
Web design is an emerging marginal industry that c...
This article mainly introduces the sql serial num...
When programmers do TypeScript/JavaScript develop...
This article example shares the specific code of ...
Table of contents 1 Test Environment 1.1 Server H...
Preface I have been working on some front-end pro...
Generally, lists have selection functions, and si...
Table of contents 1. Developer Platform Configura...