Nibbles and Bits

Node

Node packages consists of modules, which are basically JavaScript files.  They are usually written to be as minimalist as possible.  In order to use another Node module in your file, you need to import it using the require keyword.   It is customary in node to name the variable the same as the module. var […]

Read More