전체 글
-
go와 sql를 사용하기위한 orm대신 sqlc사용Go/sqlc 2024. 1. 13. 23:17
go는 프레임워크도 그렇지만 orm도 딱히 대중적인게 없는듯 하다. sqlc generates type-safe code from SQL https://pkg.go.dev/github.com/kyleconroy/sqlc#section-readme sqlc package - github.com/kyleconroy/sqlc - Go Packages Discover Packages github.com/kyleconroy/sqlc Version: v1.19.1 Opens a new window with list of versions in this module. Published: Jul 13, 2023 License: MIT Opens a new window with license information. Imp..
-
typescript 리터럴 객체에 as const의 반복문 Object.entriesTypescript 2024. 1. 11. 09:19
React Typescript 사용중에 SelectBox 같은 재사용 가능한 토글 메뉴 컴포넌트를 만들고 있는 와중에 export const orderSelectOptions = { orderSubject: '제목순', orderUpdated: '수정일순', orderCreated: '생성일순', } as const; 이런식으로 리터럴 객체에 as const를 이용하여 상수로 만들었다. - 해당 리터럴 객체의 추론 const orderSelectOptions: { readonly orderSubject: "제목순"; readonly orderUpdated: "수정일순"; readonly orderCreated: "생성일순"; } {Object.entries(orderSelectOptions).map(([..
-
Nestjs에서 테스트 코드 작성시 Nest can't resolve dependencies in the RootTestModule context 에러Nest.js/TDD 2024. 1. 9. 20:57
Nest can't resolve dependencies of the ApmService (?). Please make sure that the argument dependency at index [0] is available in the RootTestModule context. Potential solutions: - If dependency is a provider, is it part of the current RootTestModule? - If dependency is exported from a separate @Module, is that module imported within RootTestModule? @Module({ imports: [ /* the Module containing ..
-
-
React에서 react-datepicker 사용 typescriptReact.js 2023. 12. 7. 10:48
https://www.npmjs.com/package/react-datepicker react-datepicker A simple and reusable datepicker component for React. Latest version: 4.24.0, last published: 7 days ago. Start using react-datepicker in your project by running `npm i react-datepicker`. There are 2858 other projects in the npm registry using react-datepi www.npmjs.com https://www.npmjs.com/package/@types/react-datepicker @types/re..
-
MSA 공부를 위해 필요한 개념(?)카테고리 없음 2023. 12. 5. 10:21
- DDD 도메인 주도 설계란 무엇인가? https://m.yes24.com/Goods/Detail/5445597 도메인 주도 설계란 무엇인가? - 예스24 거대한 소프트웨어 프로젝트가 직면하는 가장 어려운 고비는 구현 자체가 아니라 소프트웨어가 적용될 실제 도메인이다. 도메인 기반 설계는 도메인에 어떻게 접근해야 하는지, 거기서 얻은 정 m.yes24.com 도메인 주도 설계 핵심 https://www.yes24.com/Product/Goods/48577718 도메인 주도 설계 핵심 - 예스24 도메인 주도 설계(DDD)를 프로젝트에 적용하고자 하는 개발자, 소프트웨어 아키텍트 또는 관리자가?DDD를 빠르게 배우고 적용할 수 있게 도와준다.?뿐만 아니라?좋은 소프트웨어를 만들기 위해 꼭 www.yes2..