일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- AWS
- Spring
- OpenCV
- 구조체배열
- 카카오 코테
- 알고리즘
- python
- 가상면접사례로배우는대규모시스템설계기초
- git
- nestJS
- @Autowired
- @Component
- 코테
- TypeORM
- C++
- 프로그래머스
- 카카오
- 해시
- 스프링
- thymeleaf
- 시스템호출
- 카카오 알고리즘
- 파이썬
- nestjs typeorm
- C언어
- 컴포넌트스캔
- Nodejs
- 코딩테스트
- spring boot
- nestjs auth
Archives
- Today
- Total
목록nestjs회원가입 (1)
공부 기록장 💻
[NodeJS/NestJS] Nest.js 프로젝트 시작 및 초기 환경 설정, User 인증 Authentication - 회원가입 기능 구현하기
NodeJS 프레임워크인 NestJS에서 User Authentication 중 회원가입 기능 구현을 해보도록 하자. 우선 다음과 같이 nest를 위한 typeorm 모듈을 설치하도록 하자. $ npm i --save @nestjs/typeorm typeorm TypeORM에 대한 자세한 설명은 https://dream-and-develop.tistory.com/198 https://www.npmjs.com/package/@nestjs/typeorm (공식문서) 를 참고하자. 다음으로, auth 모듈, 컨트롤러, 서비스를 생성해준다. $ nest g module auth $ nest g controller auth $ nest g service auth User Entity 이후, auth 폴더 내에 e..
# Tech Studies/NestJS
2022. 8. 25. 00:37