본문 바로가기

nestjs4

NestJS 회원가입/로그인 구현하기(feat. MySQL) NestJS 회원가입/로그인 구현하기(feat. MySQL)DB 설계 → Entity → Module/Service → Controller → Auth/JWT 적용 0. DB 연동https://docs.nestjs.com/techniques/configuration Documentation | NestJS - A progressive Node.js frameworkNest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Pro.. 2025. 8. 30.
NestJS 인증 기능 구현하기 NestJS 인증 기능 구현하기본 포스팅은 인프런 강의에서 배운 내용을 개인적으로 정리한 글입니다.nest g resource auth📍회원가입@Entity()export class User extends BaseEntity { @PrimaryGeneratedColumn() id: number @Column() username: string @Column() password: string}@Module({ imports: [TypeOrmModule.forFeature([User])], controllers: [AuthController], providers: [AuthService]})export class AuthModule {}// auth.service.ts@Injectable().. 2025. 8. 10.
NestJS 게시판 CRUD 구현하기 NestJS 게시판 CRUD 구현하기본 포스팅은 인프런 강의에서 배운 내용을 개인적으로 정리한 기록입니다.지난 글에서는 NestJS의 기본 개념에 대해 정리해봤다. 그 내용을 바탕으로 실제 게시판 CRUD 기능을 구현해보자![✨BACKEND/📍NestJS] - NestJS 개념 NestJS 개념🐱NestJS 개념본 포스팅은 인프런 강의에서 배운 내용을 개인적으로 정리한 기록입니다.📍 NestJS란https://docs.nestjs.com/ Documentation | NestJS - A progressive Node.js frameworkNest is a framework for building efficient, sbori-note.tistory.com 📍 게시판 만들기Board Module 만.. 2025. 7. 27.
NestJS 개념 🐱NestJS 개념본 포스팅은 인프런 강의에서 배운 내용을 개인적으로 정리한 기록입니다.📍 NestJS란https://docs.nestjs.com/ Documentation | NestJS - A progressive Node.js frameworkNest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Read.. 2025. 7. 20.