Problems with nodejs + koa + typescript integration and automatic restart

Problems with nodejs + koa + typescript integration and automatic restart

Version Notes

Node.js: 16.13.1

Create a project

Create the following directory structure

project
├── src
│ └── server.ts
├── package.json
└── tsconfig.json

package.json can be generated using yarn init -y
tsconfig.json can be generated using tsc --init ( typescript package needs to be installed globally or in the project to use the tsc command)

Install Dependencies

Notice:

  • The @tsconfig/node16 package needs to change according to the version of Node.js The version installed on my computer is 16.xx , so I use @tsconfig/node16 . Please refer to the instructions in tsconfig/bases for details. Of course, you don’t need to install this package at all. The advantages of this package are public availability and mainstream recommended configuration.
  • If typescript has been installed globally, remove it from the command below
  • concurrently is a toolkit for executing multiple commands concurrently
  • nodemon is a toolkit that monitors file changes and automatically restarts programs
yarn add koa
yarn add typescript @tsconfig/node16 @types/node @types/koa concurrently nodemon -D

Filling content

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

Note: The value of the extends field is replaced according to the package name you installed @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\""
}

run

All our source code is in the src directory, and js files compiled by tsc are in dist directory, which is the path specified in the tsconfig.json file

Local development: If there is no dist directory, you need to execute yarn build to compile and generate, and then execute yarn watch

Deployment production: execute yarn build , yarn serve or yarn start in sequence (serve and start are the same command)

References

microsoft/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:
  • nodejs+koa2 implements imitation of springMVC framework
  • Sample code for adding, deleting, modifying and checking json files based on Koa (nodejs framework)
  • How to use koa-log4 to manage nodeJs log notes
  • Typescript nodejs dependency injection implementation code detailed explanation

<<:  Example of implementing hollow triangle arrow and X icon with after pseudo element

>>:  Chinese and English font name comparison table (including Founder and Arphic)

Recommend

How to implement checkbox & radio alignment

Not only do different browsers behave differently...

MySQL msi installation tutorial under windows10 with pictures and text

1. Download 1. Click the latest download from the...

Docker image cannot be deleted Error: No such image: xxxxxx solution

Preface The docker image cannot be deleted. Check...

In-depth analysis of MySQL execution plans

Preface In the previous interview process, when a...

How to build php7 with docker custom image

First, perform a simple Docker installation. To c...

Detailed Introduction to MySQL Innodb Index Mechanism

1. What is an index? An index is a data structure...

The qualities and abilities a web designer should have

Web design is an emerging marginal industry that c...

SQL serial number acquisition code example

This article mainly introduces the sql serial num...

Vue implements real-time refresh of the time display in the upper right corner

This article example shares the specific code of ...

Node+Express test server performance

Table of contents 1 Test Environment 1.1 Server H...

Table paging function implemented by Vue2.0+ElementUI+PageHelper

Preface I have been working on some front-end pro...

React mouse multi-selection function configuration method

Generally, lists have selection functions, and si...

Sample code for implementing Google third-party login in Vue

Table of contents 1. Developer Platform Configura...