Installing Node.js Start by visiting the main site for NodeJS.org, and click on the stable download button this will initiate the download for a file name node-v5.9.0.pkg, double click on the .pkg file and this will begin the Node.js wizard follow the instructions … [Read more...] about How To Install Node.js in OSX
JavaScript
How To Update Node.js in Windows
In windows there is no package manager. This means the process of updating node is simple enough, you uninstall the program and download and install the new version form the main NodeJS.org web site and you will be back up to the latest version of Node.js. … [Read more...] about How To Update Node.js in Windows
How To Remove Node.js from Windows
To remove Node.js from windows you will have to use the built in "Programs and Features" window to uninstall the node program. … [Read more...] about How To Remove Node.js from Windows
How to install Node.js in Windows
Installing Node.js Start by visiting the main site for node at NodeJS.org, and click on the stable download button this will initiate the download for a file name node-v5.9.0-x86.msi, double click on the .msi file and this will begin the Node.js wizard follow the … [Read more...] about How to install Node.js in Windows
Understanding Node.js Versions
Understanding Node.js Versions Node.js uses semantic versioning to control the versions of Node.js. Semantic versioning works with the following pattern. MAJOR.MINOR.PATCH Now let's take a look at one of the builds for Node.js. v5.9.0 5 denotes that it's … [Read more...] about Understanding Node.js Versions
npm is not “Node Package Manager”
npm Contrary to the belief of many, "npm" is not in fact an abbreviation for "Node Package Manager". It is a recursive bacronymic abbreviation for "npm is not an acronym". (If it was "ninaa", then it would be an acronym, and thus incorrectly named.) -- Issac … [Read more...] about npm is not “Node Package Manager”
Event Loop Basics in Node.js
Event Loop Node.js is a single threaded system by design. If you don't know what threads or what even a single one will do. No problem. Just keep the following idea in mind when working with Node.js Node.js can only do one thing at any given time. This means … [Read more...] about Event Loop Basics in Node.js
Node, Node.js, IO.js?
Node.js will typically be referred to as node, you find evidence of this by the command that you use to run Node.js. Through out the series you will see it referred to NodeJS, Node.js or node. … [Read more...] about Node, Node.js, IO.js?
How to Automate the process of creating Thumbnails
If you are brand new to Youtube like me. You might want to create a thumbnail for your videos, why? It has the ability to increase viewers. That means more sales for you! In theory, of course, I can not guarantee you anything. If you are publishing one video a … [Read more...] about How to Automate the process of creating Thumbnails
How to setup access to mongodb in production with local clients ( Robomongo HumongouS.io )
"Now I am not a security professional and I don't pretend to play one on the internet" - Rick H. Take this post with a grain of salt. I'm preparing to launch one of my web applications JSecademy. The backend of the application is using mongodb as a datastore. … [Read more...] about How to setup access to mongodb in production with local clients ( Robomongo HumongouS.io )