December 30, 2018
Simple cli to that runs a script continuously forever. Good for small apps.
Production process manager that has a built in load balancer. Allows applications to be up forever with no downtime
Encrypts data before it is sent from the client to the server. Preventing some common and easy hacks. TLS is the next progression of SSL
Prevents some well known web vulnerabilities by setting HTTP headers appropriately
Don’t use default session cookie name
app.use(session({name: 'notdefaultsessionidname'})
Set cookie security options
app.use(session({name: 'session', cookie: { secure: true, httpOnly: true, domain: 'example.com', path: 'foo/bar', expires: expiryDate})
Handle exceptions properly
Written by David Yu who loves to build things in code.You should checkout our facebook for latest events and news