vincentzyc / nest-demo

nestjs demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

Nest framework TypeScript starter repository.

Installation

$ npm install

项目根目录下(与src目录同级) 新建 ormconfig.json 文件,写入数据库信息

{
  "type": "mysql",
  "host": "xxx",
  "port": xxx,
  "username": "xxx",
  "password": "xxx",
  "database": "xxx",
  "insecureAuth": true,
  "entities": [
    "dist/**/*.entity{.ts,.js}"
  ],
  "synchronize": false
}

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

License

Nest is MIT licensed.

About

nestjs demo


Languages

Language:TypeScript 94.3%Language:HTML 5.4%Language:CSS 0.3%