Enable JavaScript to use search. / 検索を使用するには JavaScript を有効にしてください。
Posts with #nestjs
Tue, April 27, 2021
1 min read
Reference Information for Implementing Authentication and Authorization with Auth0 + NestJS
Reference links I read when implementing authentication and authorization with Auth0 and NestJS.
read more →
Tue, April 20, 2021
Using nestjs/bull for Job and Queue Processing in NestJS
References I gathered when adopting nestjs/bull for job and queue processing in a NestJS project.
Thu, April 1, 2021
2 min read
How to Start HTTP and HTTPS Servers Simultaneously in NestJS
Sample NestJS code that runs HTTP and HTTPS servers side by side via ExpressAdapter with a mkcert cert.
Tue, April 6, 2021
[NestJS] node-redis TLS Support Sample Code
NestJS sample that connects node-redis to Redis over TLS by passing a tls option to createClient.
Sat, April 3, 2021
How to Introduce node-source-map-support to Display .ts File Locations in Stack Traces in NestJS
Using source-map-support (dev only) so NestJS stack traces point at .ts files without breaking Sentry source maps.
Tue, May 18, 2021
NestJS Unit Test and E2E Test File Placement
From NestJS official samples: unit tests go under src/, end-to-end tests go under e2e/.