Installing Native Modules
+Some npm modules require native dependencies to be compiled when they are being installed (a.k.a. "native modules"). This guide will help you prepare your system for compiling native modules.
+ +Windows
+You need to install Microsoft Visual Studio
+OS X
+You will need the Command Line Tool package from Apple to be able to compile and install native modules. As of OS X 10.9 (Mavericks, Yosemite, El Capitan and newer) just run the command below which will guide you through installing the Command Line Tool package:
+xcode-select --install
+ If you have an earlier version of OS X, check out this guide instead.
+Linux
+You will need the build-essential
package to be able to compile native modules. Follow the guide for your Linux distribution below to install it:
Ubuntu
+sudo apt-get install -y build-essential
+ Debian
+Run the following command as root
+apt-get install -y build-essential
+