Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
.env
dist
42 changes: 0 additions & 42 deletions README.md

This file was deleted.

Empty file added sprint11/.vscode/settings.json
Empty file.
37 changes: 37 additions & 0 deletions sprint11/README sprint11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# 스프린트 미션 11 시안 확인

아래 링크를 통해 강의 학습 후 만들어봐야 할 실습 과제 디자인을 확인해 보세요

- [스프린트 미션 11 Figma 디자인 확인하러 바로가기](https://www.figma.com/design/EWfmnBJU3fdkeHKyYBQW6L/%5B%EC%8A%A4%ED%94%84%EB%A6%B0%ED%84%B0%EC%9A%A9%5D-%ED%8C%90%EB%8B%A4%EB%A7%88%EC%BC%93?node-id=16034-14726&t=QOkQFFiW9383Kxlw-1)

## 요구사항
### 기본 요구사항
#### 공통

- [x] Github에 위클리 미션 PR을 만들어 주세요.
- [x] React 및 Express를 사용해 진행합니다.
- [x] TypeScript를 활용해 프로젝트의 필요한 곳에 타입을 명시해 주세요.
- [x] any 타입의 사용은 최소화해 주세요.
- [x] 복잡한 객체 구조나 배열 구조를 가진 변수에 인터페이스 또는 타입 별칭을 사용하세요.
- [x] Union, Intersection, Generics 등 고급 타입을 적극적으로 사용해 주세요.
- [x] 타입 별칭 또는 유틸리티 타입을 사용해 타입 복잡성을 줄여주세요.
- [x] 타입스크립트 컴파일러가 에러 없이 정상적으로 작동해야 합니다.



#### 프론트엔드

- [x] 기존 React(혹은 Next) 프로젝트를 타입스크립트 프로젝트로 마이그레이션 해주세요.
- [x] TypeScript를 활용해 프로젝트의 필요한 곳에 타입을 명시해 주세요.



#### 백엔드

- [x] 기존 Express.js 프로젝트를 타입스크립트 프로젝트로 마이그레이션 해주세요.
- [x] tsconfig.json 파일을 생성하고, 필요한 컴파일러 옵션을 설정해야 합니다. (예: outDir).
- [x] TypeScript 관련 명령어를 package.json에 설정해 주세요. (예: 빌드 및 개발 서버 실행 명령어).
- [x] ts-node와 nodemon을 사용하여 개발 환경을 구성합니다.
- [x] nodemon과 함께 ts-node를 사용하여 . ts 파일이 변경될 때 서버를 자동으로 재시작하도록 설정합니다.
- [x] Mongoose나 Prisma 등 ORM을 사용하는 경우, 모델에 대한 인터페이스 또는 타입을 정의합니다.
- [x] 필요한 경우, declare를 사용하여 타입을 오버라이드하거나 확장합니다.
10 changes: 10 additions & 0 deletions sprint11/http/test.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
GET http://localhost:3100/uploads/1731471235283-츄츄 솜뭉치 시절.png

###
GET http://localhost:3100

###
GET http://localhost:3100/products?page=1&pageSize=10

###
GET http://localhost:3100/articles?page=1&pageSize=10
Loading