# me-app-server **Repository Path**: yangtaoqwer_admin_admin/me-app-server ## Basic Information - **Project Name**: me-app-server - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-04 - **Last Updated**: 2025-11-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Project setup ```bash $ yarn install ``` ## Compile and run the project ```bash # development $ yarn run start # watch mode $ yarn run start:dev # production mode $ yarn run start:prod ``` ## Run tests ```bash # unit tests $ yarn run test # e2e tests $ yarn run test:e2e # test coverage $ yarn run test:cov ``` ## Deployment ```bash $ yarn install -g mau $ mau deploy ``` ## License Nest is [MIT licensed](https://github.com/nestjs/nest/blob/master/LICENSE). ## 常用状态码对照表(推荐收藏) 状态码 常量 适用场景 - 200 HttpStatus.OK 查询、更新成功 - 201 HttpStatus.CREATED 创建成功 - 204 HttpStatus.NO_CONTENT 删除成功,无返回体 - 400 HttpStatus.BAD_REQUEST 参数格式错误 - 401 HttpStatus.UNAUTHORIZED 未登录 - 403 HttpStatus.FORBIDDEN 登录但无权限 - 404 HttpStatus.NOT_FOUND 资源不存在 - 405 HttpStatus.METHOD_NOT_ALLOWED 方法错误(POST/GET) - 429 HttpStatus.TOO_MANY_REQUESTS 请求太快 - 500 HttpStatus.INTERNAL_SERVER_ERROR 服务端错误