전체 글210 #0. 기초부터 따라하는 Nest.js : 이 글의 취지 & 시작 전 준비할 것들 먼저, 이 글의 목적은 학교 동아리 내에 멘토링을 위함과 동시에 nest.js 입문자분들을 위해 저의 방식대로 nest.js를 이용하는 방법을 소개, 알려드리기 위한 글입니다. 목표 : 비전공자, javascript에 익숙하지 않은 분들도 쉽게 따라할 수 있을만큼 디테일하되, Deep하지는 않도록 설명하기 딥한 부분은 저도 잘 모르고 설명하기도 힘들뿐더러, 혼자서 공부하면서 구글링하고 남들한테 질문하면서 알아가면 됩니다. nest.js를 처음 접하시거나 봐도 모르겠다 하시는 분들은 일단 코드를 따라 쳐보세요. 따라 치시면서 얻는 것들도 분명히 있을겁니다. 주의사항 필자도 nest.js를 접한지 오래되지 않았고, 아직 스스로 초보라고 생각하기 때문에 틀리거나 비효율적인 부분이 있을 수 있습니다. 이런 부분.. 2023. 3. 11. 타입챌린지 : 3-Omit (medium) 이 글은 제가 타입챌린지를 하면서 해석한 내용을 적는 글입니다. 틀린 내용이 있으면 댓글 달아주시면 감사하겠습니다. https://github.com/type-challenges/type-challenges/blob/main/questions/00003-medium-omit/README.md GitHub - type-challenges/type-challenges: Collection of TypeScript type challenges with online judge Collection of TypeScript type challenges with online judge - GitHub - type-challenges/type-challenges: Collection of TypeScript type .. 2023. 3. 11. TypeORM : Postgresql 42703 에러 ( + as 사용시 소문자만 나오는 경우 해결법) TypeOrm으로 Postgresql 이용 도중 Select 문을 사용하다가 발견한 에러이다. driverError: error: column "a.createdAt" does not exist code: '42703' error let query = this.articleRepository .createQueryBuilder('a') .select([ 'a.id as id', 'a.title as title', 'a.createdAt as createdAt', ]); ... query = query.orderBy('createdAt', 'DESC'); 게시글 목록을 불러오기 위하여 대충 위처럼 코드를 짰다. (완전 똑같지는 않다) 그런데, as를 썼는데 return 값이 createdAt이 아닌 cre.. 2023. 3. 11. 타입챌린지 : 2-Get Return Type (medium) 이 글은 제가 타입챌린지를 하면서 해석한 내용을 적는 글입니다. 틀린 내용이 있으면 댓글 달아주시면 감사하겠습니다. https://github.com/type-challenges/type-challenges/blob/main/questions/00002-medium-return-type/README.md GitHub - type-challenges/type-challenges: Collection of TypeScript type challenges with online judge Collection of TypeScript type challenges with online judge - GitHub - type-challenges/type-challenges: Collection of TypeScrip.. 2023. 3. 8. 이전 1 ··· 40 41 42 43 44 45 46 ··· 53 다음