Jiang's Tech Journal
Jiang's Tech Journal
无限进步
首页
分类
关于
Nest
Electron
GitHub
Vue
Nest
JavaScript
好文
前端
Rust
Tauri
Puppeteer避免被检测
避免检测的包https://www.npmjs.com/package/puppeteer-extra-plugin-stealth
Nest
Electron
125
0
2024-09-23
生产环境中的nest-winston关闭控制台颜色
https://github.com/gremo/nest-winston nest-winston默认会输出带颜色的log,但是在生产环境中会干扰日志的阅读格式,我们需要在生产环境中关闭控制台颜色。 在package.js
Nest
52
0
2024-09-23
在NestJS中允许接口跨域
//main.ts app.enableCors({ origin: '*', methods: 'GET,HEAD,PUT,PATCH,POST,DELETE', preflightContinue: true, optionsSuccessStatus: 204,
Nest
57
0
2024-09-23
集成nest-winston日志模块
https://github.com/gremo/nest-winston npm install --save nest-winston winston //main.ts import { NestFactory } from '@nestjs/core'; import { AppModule
Nest
85
0
2024-09-23