전체 글
-
NestJS redis 라이브러리Nest.js 2024. 3. 17. 16:33
https://www.npmjs.com/package/@liaoliaots/nestjs-redis @liaoliaots/nestjs-redis Redis(ioredis) module for Nest framework (node.js).. Latest version: 9.0.5, last published: a year ago. Start using @liaoliaots/nestjs-redis in your project by running `npm i @liaoliaots/nestjs-redis`. There are 41 other projects in the npm registry using www.npmjs.com https://www.npmjs.com/package/ioredis
-
vscode에서 eslint룰대로 order정렬을 하고 싶을때eslint 2024. 3. 12. 17:05
'import/order': [ 'error', { groups: [ 'builtin', 'external', 'internal', ['sibling', 'parent'], 'index', 'unknown', ], 'newlines-between': 'always', alphabetize: { order: 'asc', caseInsensitive: true, }, }, ], import/order룰대로 자동 정렬 되지 않고 vscode상에서 에러표시가 난다. .vscode/settings.json { ... "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" } } 해당 설정을 하게 되면 저장 할때 자동으로 정렬해준다!
-
NestJS에서 에러 로그 생성 및 관리Nest.js 2024. 3. 12. 15:28
https://velog.io/@inmyblue0930/winton-daily-rotate-file Winston + Winston-daily-rotate-file 를 이용하여 로그 파일 관리 Sentry-Slack 연동 | 실시간 로그모니터링 https://velog.io/@inmyblue0930/Sentry-Slack-%EC%97%B0%EB%8F%99-%EC%8B%A4%EC%8B%9C%EA%B0%84-%EB%A1%9C%EA%B7%B8%EB%AA%A8%EB%8B%88%ED%84%B0%EB%A7%81 [NestJs]Sentry-Slack 연동 | 실시간 로그모니터링 목표 1) Sentry를 통해 에러 발생시 바로 트래킹 2) Slack으로 에러 전송 설치해야할 라이브러리 Sentry 연결 > Sentry..
-
Typescript로 SQL을 작성하는 라이브러리Node.js 2024. 3. 10. 13:19
https://github.com/codemix/ts-sql?tab=readme-ov-file GitHub - codemix/ts-sql: A SQL database implemented purely in TypeScript type annotations. A SQL database implemented purely in TypeScript type annotations. - codemix/ts-sql github.com 굉장히 흥미롭다. 완전한 Typescript를 이용하여 쌩 쿼리를 작성할 수 있다. 꿀잼인데?
-
nestjs-test-coverage에서 제외 파일 설정Nest.js/TDD 2024. 3. 9. 20:17
- Reference https://jestjs.io/docs/configuration#coveragepathignorepatterns-arraystring Configuring Jest · Jest The Jest philosophy is to work great by default, but sometimes you just need more configuration power. jestjs.io //package.json { ... "coverageDirectory": "../coverage", "testEnvironment": "node", "coveragePathIgnorePatterns": [ "/main.ts", "/app.module.ts" ] } }
-
NestJS class-validator 사용시 일관성 있는 에러처리Nest.js 2024. 3. 8. 12:25
Reference - https://dev.to/nithinkjoy/how-to-use-class-validator-and-return-custom-error-object-in-nestjs-562h How to use class-validator and generate custom error object in nest.js Objective The main objective of this article is showing how to generate custom error... dev.to - https://stackoverflow.com/questions/60270468/throw-same-error-format-as-class-validator-in-nestjs Throw same error form..
-