18 lines
1019 B
Plaintext
18 lines
1019 B
Plaintext
ฟีเจอร์ขั้นสูง (Advanced Features)
|
|
Error Handling: ใช้ Global Exception Filter เพื่อจัดการ Error และส่ง Response ที่เป็นมาตรฐาน
|
|
|
|
Logging: ใช้ Winston สำหรับ Structured Logging และบันทึก Error ลงไฟล์
|
|
|
|
Testing: มีโครงสร้างสำหรับ Unit Test และ E2E Test ด้วย Jest และ Supertest
|
|
|
|
Performance: ใช้ CacheModule สำหรับ Caching ข้อมูลที่เรียกใช้บ่อย
|
|
|
|
Security:
|
|
|
|
Rate Limiting: ใช้ ThrottlerModule เพื่อป้องกัน Brute-force attack
|
|
|
|
Secret Management: แนะนำให้ใช้ Environment Variable ของ Docker แทนไฟล์ .env ใน Production
|
|
|
|
API Documentation: สร้างเอกสาร API อัตโนมัติด้วย @nestjs/swagger และเข้าถึงได้ที่ /api-docs
|
|
|