일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 공룡게임
- flask
- nestjs
- OCR
- mongoose
- Dinosaur
- Nest.js
- Queue
- game
- cookie
- nodejs
- dfs
- jest
- Sequelize
- 정렬
- typeORM
- 게임
- MySQL
- Python
- react
- TypeScript
- JavaScript
- MongoDB
- class
- 자료구조
- Express
- Bull
- AWS
- GIT
- Today
- Total
목록분류 전체보기 (651)
포시코딩
https://meetup.nhncloud.com/posts/243 prettier 2.0에서 달라진 옵션 살펴보기 : NHN Cloud Meetup prettier 2.0은 얼마 전(2020.3) 정식 릴리즈되었습니다. 바로 적용을 하려다 조금 기간을 두고 적용하자는 의견이 있어 쪼-금 두고 봤습니다. 두 달 정도 시간이 지나 Chart 4.0 개발에 Prettier2.0을 적용 meetup.nhncloud.com https://github.com/prettier/prettier/issues/11465 Change the default value for `trailingComma` to `"all"` in v3 · Issue #11465 · prettier/prettier Trailing commas ..
https://medium.com/@phamtuanchip/top-10-interview-question-for-node-js-senior-developer-c20bb80377a4 Top 10 interview question for node.js senior developer “In the world of server-side JavaScript, Node.js stands as a powerful and versatile platform, driving innovation and efficiency in web… medium.com
https://shlee0882.tistory.com/187
https://tech.kakao.com/2019/08/01/graphql-basic/ GraphQL 개념잡기 GraphQL은 페이스북에서 만든 쿼리 언어입니다. GrpahQL은 요즘 개발자들 사이에서 자주 입에 오르내리고 있으나, 2019년 7월 기준으로 얼리스테이지(early-stage)임은 분명합니다. 국내에서 GraphQL API를 O tech.kakao.com
https://soo-vely-dev.tistory.com/205 [Tool] DBeaver 엑셀 다운로드 라이브러리 수동 설치(DBeaver Office integration) 회사에서 일을 하다보니, 쿼리 실행 결과를 엑셀파일로 저장할 일이 많아졌습니다. DBeaver는 기본적으로 아래 이미지와 같이 여러 형식의 export를 제공하는데, .xlsx는 없더라구요 ㅜㅜ 알아보니, D soo-vely-dev.tistory.com
https://velog.io/@yujuck/NestJS-devtools-사용하려다-GraphQLModule-설정-바꾼-스토리
import * as jwt from 'jsonwebtoken'; jest.mock('jsonwebtoken', () => { return { sign: jest.fn(() => 'TOKEN') }; }); 요렇게 간단히 가능
git commit --amend 위 명령어를 통해 가장 최근 Git 커밋 메시지를 변경할 수 있다. 실행 시 편집기가 열리고 작성 후 저장하면 변경된다. git commit --amend -m "an updated commit message" 이렇게 `-m` 옵션을 통해 편집기를 열지 않고도 변경할 수 있다. 참고 https://www.atlassian.com/ko/git/tutorials/rewriting-history
PartialType() 부모 DTO의 모든 속성을 물려받지만 전부 Optional PickType() 부모 DTO의 속성 중 몇 개만 골라서 물려받음 OmitType() 부모 DTO의 속성 중 몇 개만 제외하고 물려받음 IntersectionType() 두 부모 DTO의 속성들을 모두 물려받음 PartialType(OmitType()) 위와 같이 함께 사용하는 경우 (e.g. UPDATE DTO를 만들 때) export class UpdateUserDto extends PartialType(CreateUserDto) {} 참고 https://velog.io/@yullivan/NestJS-Mapped-Types와-혼란