전체 글
-
Nextjs 배포시 공식문서Next.js 2023. 8. 9. 12:00
https://nextjs.org/docs/pages/building-your-application/deploying 참고자료 https://m4nd4r1n.dev/docker-nginx-github-actions%EB%A1%9C-nextjs-%EC%9E%90%EB%8F%99-%EB%AC%B4%EC%A4%91%EB%8B%A8-%EB%B0%B0%ED%8F%AC%ED%95%98%EA%B8%B0#6570a268d076468eb365f4cc8892b85c 참고자료 https://github.com/vercel/next.js/blob/canary/examples/with-docker/README.md
-
-
NestJS에서 프로젝트 기본 세팅 및 사용하는 라이브러리 정리Nest.js 2023. 8. 8. 11:18
NestJS 프로젝트 생성하기.$ nest new project-name --strict ts.config{ "compilerOptions": { "module": "commonjs", "declaration": true, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "ES2021", "sourceMap": true, "outDir": "./dist", "incremental": true, "strict": true, "skipLibCheck": true, "strictNullChecks..
-
[라이브러리]React에서 드래그 이벤트 필요할 때React.js 2023. 7. 25. 15:02
https://www.npmjs.com/package/react-draggable react-draggable React draggable component. Latest version: 4.4.5, last published: a year ago. Start using react-draggable in your project by running `npm i react-draggable`. There are 1712 other projects in the npm registry using react-draggable. www.npmjs.com
-
-
yarn berry 사용법(yarn3)카테고리 없음 2023. 7. 18. 09:37
https://duck-blog.vercel.app/blog/web/what-is-yarn-berry
-
[Typeorm] take skip VS limit offsetNest.js 2023. 7. 15. 17:04
개요 클라이언트가 페이징 처리를 할 때 백엔드는 분명히 페이징 처리를 해야될 때가 온다. 그리고 orm을 typeorm 쓰고 있는 개발자라면 take를 쓸 것인지 limit을 쓸 것인지 고민해야될 때가 온다. 친절하게도 typeorm에서 처리하는 방법을 제시하고 있다. 내용 typeorm을 보면 limit에서는 join을 할 경우 원하는 결과값이 나오지 않을 수 있다고 나와있다. 이유가 뭘까..? https://stackoverflow.com/questions/68468192/difference-between-limit-and-take-in-typeorm stackoverflow에서 찾아볼 수 있었다. 내가 이해한 바로는 limit은 select 당시에 limit을 먼저 실행한 후 join을 실행하기 때..
-
Nestjs + typeorm에서 entity에 본인의 좋아요 속성 가져오기Nest.js 2023. 7. 11. 17:14
comment.entity에 본인이 누른 좋아요 userLike속성을 만들고 해당 userLike가 있는지 체크 해주는 함수 setUserLike함수를 만들어서 가져온 댓글에서 내가 누른 좋아요를 체크하기 위한 forEach를 이용하여 setUserLike를 체크 할 때 꼭 relations 관계 부분을 확인 할 것, commentLikedByUsers를 조인 하지도 않았는데 setUserLike를 실행 시키니 아무것도 찾지 못했다.