# node-nest-blog **Repository Path**: hexiangss/node-nest-blog ## Basic Information - **Project Name**: node-nest-blog - **Description**: nest博客 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2025-05-29 - **Last Updated**: 2025-06-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Project setup ```bash $ pnpm install ``` ### 新建功能 ```bash nest g module auth nest g controller auth nest g service auth nest generate module auth --service --controller --entity // 全部生成 nest g resource users nest g resource common/category ``` ## Compile and run the project ```bash # development $ pnpm run start # watch mode $ pnpm run start:dev # production mode $ pnpm run start:prod ``` ## Run tests ```bash # unit tests $ pnpm run test # e2e tests $ pnpm run test:e2e # test coverage $ pnpm run test:cov ``` ## Deployment ```bash $ pnpm install -g @nestjs/mau $ mau deploy ```