Why add a health check endpoint?
GET /health that returns 200 OK lets uptime monitors and load balancers know the server is alive. It is a 30-second addition that pays off in production.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in Common Mistakes When Starting a Node.js Project (and How to Avoid Them)
No plan, no folder structure, secrets in code, no input validation, no error handling, plain-text passwords, JWT in LocalStorage, no health check, blocking the event loop, and no logging.
In environment variables loaded with dotenv. Keep secrets in a .env file and add .env to .gitignore. Never hardcode secrets in source files.
In an httpOnly, secure, sameSite cookie. LocalStorage is open to XSS and is risky. Cookies configured correctly are safer.
Still have questions?
Browse all our FAQs or reach out to our support team
