{"id":24177707,"url":"https://github.com/example-collection/nestjs-typeorm-example","last_synced_at":"2025-09-20T22:32:13.419Z","repository":{"id":43328708,"uuid":"334096421","full_name":"Example-Collection/NestJS-TypeORM-Example","owner":"Example-Collection","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-15T13:08:38.000Z","size":1480,"stargazers_count":16,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T16:11:15.469Z","etag":null,"topics":["nestjs","nestjs-typeorm","typeorm"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Example-Collection.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2021-01-29T09:27:13.000Z","updated_at":"2025-03-30T01:56:36.000Z","dependencies_parsed_at":"2024-02-15T14:28:55.060Z","dependency_job_id":"249f4fda-2369-4169-a7dd-24a70645f395","html_url":"https://github.com/Example-Collection/NestJS-TypeORM-Example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Example-Collection/NestJS-TypeORM-Example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Example-Collection%2FNestJS-TypeORM-Example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Example-Collection%2FNestJS-TypeORM-Example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Example-Collection%2FNestJS-TypeORM-Example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Example-Collection%2FNestJS-TypeORM-Example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Example-Collection","download_url":"https://codeload.github.com/Example-Collection/NestJS-TypeORM-Example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Example-Collection%2FNestJS-TypeORM-Example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276169396,"owners_count":25596952,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-20T02:00:10.207Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nestjs","nestjs-typeorm","typeorm"],"created_at":"2025-01-13T04:15:48.918Z","updated_at":"2025-09-20T22:32:13.100Z","avatar_url":"https://github.com/Example-Collection.png","language":"TypeScript","readme":"\u003ch1\u003eNestJS Example\u003c/hq\u003e\n\n\u003ch2\u003e프로젝트 설명\u003c/h2\u003e\n\n- 이 프로젝트는 NestJS를 이용해 기본적인 CRUD를 수행하는 예시입니다.\n\n- 기술 스택 : TypeScript + NestJS + TypeORM\n\n- 개발하며 정리한 글들 : \u003ca href=\"https://github.com/sang-w0o/Study/tree/master/Backend%20Frameworks/NestJS/TypeORM%20%2B%20NestJS\"\u003e링크\u003c/a\u003e\n\n\u003ch2\u003e기능 설명\u003c/h2\u003e\n\n- 간단한 게시판 API를 구현할 것이다.  \n  사실상 모든 CRUD는 게시판의 연장선이라고 생각하기 때문이다.  \n  우선 테이블 구조는 아래와 같다.\n\n- 또한 JWT를 이용해서 간단한 인증 절차 및 middleware를 적용할 것이다.\n\n- 사용자(`users`) 테이블은 아래의 컬럼들을 가진다.\n\n  - user_id (INTEGER, PK)\n  - name (VARCHAR(200), NOT NULL)\n  - email (VARCHAR(200), NOT NULL, UNIQUE)\n  - password (VARCHAR(1000), NOT NULL)\n\n- 게시판(`boards`) 테이블은 아래의 컬럼들을 갖는다.\n\n  - board_id (INTEGER, PK)\n  - title (VARCHAR(400), NOT NULL)\n  - content (VARCHAR(1000), NOT NULL)\n  - created_at (DATETIME, NOT NULL)\n  - last_modified_at (DATETIME, NOT NULL)\n\n- 구현할 API 들은 아래와 같다.\n\n- [x] 회원 등록 : `[POST] /user`\n- [x] 회원 정보 수정 : `[PUT] /user/{userId}`\n- [x] 회원 정보 조회 : `[GET] /user/{userId}`\n- [x] 회원 정보 삭제 : `[DELETE] /user/{userId}`\n- [x] 글 등록 : `[POST] /user/board/{userId}`\n- [x] 글 수정 : `[PATCH] /user/board/{userId}/{boardId}`\n- [x] 글 삭제 : `[DELETE] /user/board/{userId}/{boardId}`\n- [x] 특정 글 조회 : `[GET] /board/{boardId}`\n- [x] 글 조회 : `[GET] /board?page=number\u0026size=number`\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexample-collection%2Fnestjs-typeorm-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexample-collection%2Fnestjs-typeorm-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexample-collection%2Fnestjs-typeorm-example/lists"}