Session

import { NestFactory } from '@nestjs/core';
import { ValidationPipe } from '@nestjs/common';
import { AppModule } from './app.module';

// CookieSession import
// tsconfig문제로 require를 이용하여 불러옴
const cookieSession = require('cookie-session')

async function bootstrap() {
  const app = await NestFactory.create(AppModule);

  // CookieSession 적용
  app.use(cookieSession({
    keys : ['asdfasfd']
  }))

  app.useGlobalPipes(
    new ValidationPipe({
      whitelist : true
    })
  )
  await app.listen(3000);
}
bootstrap();

위 코드들은 단순 예시이다.


세션을 이용하여 정보 조회하기

session에 userId가 없으면 undefined가 들어가게 되어 유저정보가 반환되지 않고, 있으면 유저정보가 반환되게 된다.

Last updated