Introduction
When it comes to production web servers, security is paramount. The importance of security correlates with that of the data or services we provide. But even for the smallest project, we want to ensure our systems aren't vulnerable to attack.
Many web development frameworks provide built-in security, which is a two-sided coin. On one side, we don't have to overly concern ourselves with the details (except for the basics, such as cleaning user input before passing it into a SQL statement), but on the other, we implicitly trust that the vendor has plugged all the holes.
If a largely used server-side scripting platform, such as PHP, is discovered to contain security vulnerability, this can become public knowledge very quickly and every site running the vulnerable version of that framework is open to attack.
With Node, server-side security is almost entirely on our shoulders. Therefore, all we need to do is educate ourselves on the potential vulnerabilities and tighten the security...