Srishti Gupta
Colby Fayock
Yazeed Bzadough
Cedd Burge
How to write easily describable code
When code is not describable using words, most people have to do some mental mapping to turn it in to words. This wastes mental energy, and you run the risk of getting the mapping wrong. Different people will map to different words, which leads to confusion when discussing the code.
Srishti Gupta
Everything you should know about ‘module’ & ‘require’ in Node.js
Node.js treats each JavaScript file as a separate module. For instance, if you have a file containing some code and this file is named xyz.js, then this file is treated as a module in Node, and you can say that you’ve created a module named xyz.