Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자료구조
- 공룡게임
- flask
- nodejs
- nestjs
- MongoDB
- mongoose
- Nest.js
- Sequelize
- game
- OCR
- TypeScript
- 정렬
- class
- react
- Express
- JavaScript
- Queue
- MySQL
- AWS
- typeORM
- jest
- 게임
- GIT
- cookie
- Dinosaur
- Python
- dfs
- Bull
Archives
- Today
- Total
포시코딩
[Nest] set cookie-parser 본문
728x90
설치
npm i cookie-parser
npm i -D @types/cookie-parser
세팅
tsconfig.json
{
"compilerOptions": {
// ...
"esModuleInterop": true,
}
}
ES6 모듈 사양을 준수하여 CommonJS 모듈을 가져올 수 있게 설정
main.ts
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import cookieParser from 'cookie-parser';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.use(cookieParser());
await app.listen(3000);
}
bootstrap();
사용 예시
import { CanActivate, ExecutionContext, Injectable } from "@nestjs/common";
import { JwtService } from "@nestjs/jwt";
@Injectable()
export class JwtAccessAuthGuard implements CanActivate {
constructor(private jwtService: JwtService) {}
async canActivate(context: ExecutionContext): Promise<any> {
try {
const request = context.switchToHttp().getRequest();
const access_token = request.cookies['access_token']; // 여기
const user = await this.jwtService.verify(access_token);
request.user = user;
return user;
} catch(err) {
return false;
}
}
}
728x90
'Node.js' 카테고리의 다른 글
[NestJS] hbs에서 Object 데이터 뿌려주기 (0) | 2023.10.12 |
---|---|
Table already exists when server restart in NestJS, TypeORM (0) | 2023.10.10 |
Express + TypeScript + Mongoose with. pnpm (2) - MongoDB Integration (2) | 2023.07.31 |
Express + TypeScript + Mongoose with. pnpm (1) - Start (0) | 2023.07.31 |
[NestJS] 다중 서버에서의 Bull, Event-Emitter - 해결중 (2) | 2023.07.17 |