Cấp độ: intermediate30 phútminMiễn phíFreeBuilder & EntrepreneurBuilder & Entrepreneur

Product Launch: Checklist ra mắtProduct launch: Launch checklist

Checklist ra mắt sản phẩm số đầy đủA complete digital product launch checklist

Bạn sẽ học gìWhat you will learn

  • Lập checklist ra mắt sản phẩmCreate a product launch checklist
  • Kiểm tra performance và SEOCheck performance and SEO
  • Chuẩn bị kế hoạch supportPrepare a support plan

Bạn sẽ tạo gìWhat you will build

Checklist ra mắt sản phẩm số đầy đủA complete digital product launch checklist

Nội dung bài họcLesson content

Testing: test trước khi ra mắtTesting: test before launch

Trước khi launch, test kỹ: (1) Unit test — từng function. (2) Integration test — flow end-to-end. (3) Cross-browser test — Chrome, Firefox, Safari, Edge. (4) Mobile test — iOS, Android. (5) Load test — chịu được traffic cao. (6) User acceptance test — cho người thật dùng thử.Before launch, test thoroughly: (1) Unit tests — each function. (2) Integration tests — end-to-end flow. (3) Cross-browser tests — Chrome, Firefox, Safari, Edge. (4) Mobile tests — iOS, Android. (5) Load tests — handle high traffic. (6) User acceptance tests — real users try it.

Security reviewSecurity review

Kiểm tra bảo mật trước launch: (1) SQL injection, XSS, CSRF (xem bài 24). (2) Authentication — JWT hết hạn, refresh token. (3) Authorization — user không truy cập data người khác. (4) Rate limit — chống brute force. (5) Secrets — không lộ API key. (6) HTTPS bắt buộc. (7) Dependency audit — npm audit.Security review before launch: (1) SQL injection, XSS, CSRF (see lesson 24). (2) Authentication — JWT expiry, refresh tokens. (3) Authorization — users can't access others' data. (4) Rate limiting — prevent brute force. (5) Secrets — no exposed API keys. (6) HTTPS mandatory. (7) Dependency audit — npm audit.

Performance và SEOPerformance and SEO

Performance: đo bằng Lighthouse — mục tiêu >90. Tối ưu: nén ảnh (WebP), minify JS/CSS, lazy load, CDN. Core Web Vitals: LCP <2.5s, FID <100ms, CLS <0.1. SEO: meta tags (title, description), sitemap.xml, robots.txt, hreflang, structured data (JSON-LD), canonical URL.Performance: measure with Lighthouse — target >90. Optimize: compress images (WebP), minify JS/CSS, lazy load, CDN. Core Web Vitals: LCP <2.5s, FID <100ms, CLS <0.1. SEO: meta tags (title, description), sitemap.xml, robots.txt, hreflang, structured data (JSON-LD), canonical URL.

Analytics, Legal, SupportAnalytics, Legal, Support

Analytics: cài Google Analytics hoặc Plausible — theo dõi traffic, conversion. Legal: Terms of Service, Privacy Policy, Cookie Policy, GDPR compliance. Support: tạo trang /help, FAQ, email support, docs. Chuẩn bị phản hồi nhanh trong tuần đầu sau launch.Analytics: install Google Analytics or Plausible — track traffic, conversion. Legal: Terms of Service, Privacy Policy, Cookie Policy, GDPR compliance. Support: create /help page, FAQ, email support, docs. Prepare fast responses in the first week after launch.

Bài tập thực hànhHands-on exercises

1Lập checklist ra mắt cho 1 web app: liệt kê 15 mục cần kiểm tra trước khi launch.Create a launch checklist for 1 web app: list 15 items to check before launch.

Gợi ýHint

Chia theo nhóm: Testing, Security, Performance, SEO, Legal, Support, Analytics.Group by: Testing, Security, Performance, SEO, Legal, Support, Analytics.

Lời giảiSolution
text
                      
                        CHECKLIST RA MẮT / LAUNCH CHECKLIST:

TESTING:
1. Unit test pass >80%
2. Cross-browser test (Chrome, Firefox, Safari)
3. Mobile test (iOS, Android)
4. Load test (chịu 1000 user đồng thời)

SECURITY:
5. Không còn SQL injection, XSS
6. HTTPS bắt buộc
7. Rate limit hoạt động
8. Secrets không lộ (npm audit clean)

PERFORMANCE:
9. Lighthouse >90
10. Core Web Vitals đạt chuẩn

SEO:
11. Meta tags đầy đủ
12. sitemap.xml + robots.txt
13. hreflang (nếu đa ngôn ngữ)

LEGAL:
14. Privacy Policy + Terms of Service

SUPPORT:
15. Trang /help + FAQ + email support
                      
                    

Kiểm traQuiz

Chọn đáp án đúng cho mỗi câu. Nhấn để xem giải thích.Choose the correct answer for each question. Click to see explanation.

Câu 1: Lighthouse score mục tiêu cho performance là bao nhiêu?Q1: What is the target Lighthouse score for performance?

Câu 2: Core Web Vitals LCP nên dưới bao nhiêu?Q2: What should Core Web Vitals LCP be under?

Câu 3: Trang nào KHÔNG cần trước khi launch?Q3: Which page is NOT needed before launch?