Node.js TypeScript Boilerplate 使用教程

Node.js TypeScript Boilerplate 使用教程

node-typescript-boilerplateMinimalistic project template to jump start a Node.js back-end application in TypeScript. ESLint, Jest and type definitions included.项目地址:https://gitcode.com/gh_mirrors/no/node-typescript-boilerplate

1. 项目的目录结构及介绍

node-typescript-boilerplate/
├── src/
│   ├── index.ts
│   └── ...
├── __tests__/
│   └── ...
├── .eslintrc.js
├── .prettierrc
├── jest.config.js
├── tsconfig.json
├── package.json
└── README.md
  • src/: 存放项目的主要源代码文件。
  • __tests__/: 存放项目的单元测试文件。
  • .eslintrc.js: ESLint 配置文件,用于代码风格检查。
  • .prettierrc: Prettier 配置文件,用于代码格式化。
  • jest.config.js: Jest 配置文件,用于单元测试。
  • tsconfig.json: TypeScript 配置文件,用于编译 TypeScript 代码。
  • package.json: 项目的依赖和脚本配置文件。
  • README.md: 项目的说明文档。

2. 项目的启动文件介绍

项目的启动文件位于 src/index.ts。这个文件是整个应用程序的入口点,通常包含初始化逻辑和启动服务的代码。

// src/index.ts
import express from 'express';

const app = express();
const port = process.env.PORT || 3000;

app.get('/', (req, res) => {
  res.send('Hello World!');
});

app.listen(port, () => {
  console.log(`Server is running on port ${port}`);
});

3. 项目的配置文件介绍

.eslintrc.js

ESLint 配置文件,用于定义代码风格和规则。

module.exports = {
  parser: '@typescript-eslint/parser',
  extends: [
    'plugin:@typescript-eslint/recommended',
    'prettier',
    'plugin:prettier/recommended',
  ],
  parserOptions: {
    ecmaVersion: 2018,
    sourceType: 'module',
  },
  rules: {
    // 自定义规则
  },
};

.prettierrc

Prettier 配置文件,用于代码格式化。

{
  "singleQuote": true,
  "trailingComma": "all",
  "printWidth": 80
}

jest.config.js

Jest 配置文件,用于单元测试。

module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
  testMatch: ['**/__tests__/**/*.ts', '**/?(*.)+(spec|test).ts'],
};

tsconfig.json

TypeScript 配置文件,用于编译 TypeScript 代码。

{
  "compilerOptions": {
    "target": "ES6",
    "module": "commonjs",
    "outDir": "./dist",
    "strict": true,
    "esModuleInterop": true
  },
  "include": ["src/**/*"]
}

package.json

项目的依赖和脚本配置文件。

{
  "name": "node-typescript-boilerplate",
  "version": "1.0.0",
  "scripts": {
    "start": "node dist/index.js",
    "build": "tsc",
    "test": "jest"
  },
  "dependencies": {
    "express": "^4.17.1"
  },
  "devDependencies": {
    "@types/express": "^4.17.13",
    "@types/jest": "^27.0.1",
    "eslint": "^7.32.0",
    "jest": "^27.2.0",
    "prettier": "^2.4.1",
    "ts-jest": "^27.0.5",
    "typescript": "^4.4.3"
  }
}

以上是 Node.js TypeScript Boilerplate 项目的详细使用教程,涵盖了项目的目录结构、启动文件和配置文件的介绍。希望这些信息

node-typescript-boilerplateMinimalistic project template to jump start a Node.js back-end application in TypeScript. ESLint, Jest and type definitions included.项目地址:https://gitcode.com/gh_mirrors/no/node-typescript-boilerplate

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

秦贝仁Lincoln

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值