I'm using Windows 7, Visual Studio 2013. I'm trying to set up Gulp in my Client's project.
I've added those Nugets to the project: Node.js version 0.12.0 Npm.js version 1.3.15.10.
For some reason I don't know, when running npm init
inside the nuget package manager when the default project is the client, it is not creating a package.json file, no question are asked regarding the file, and the command never exits.
Is this related somehow to the fact that I only worked through the Visual Studio project? Later on I downloaded Node.js through the installer because I saw no version of node.js existed on my pc.
Do I need to install npm also outside of Visual studio? I don't have access to the network there, should I get an .msi file?
Regarding the Gulp nuget package, I've read in other sites that Gulp should be installed through npm using this command: npm install gulp -g -save dev
. I can't run that command because I have no network connection, therefore how can I do that only with the gulp nuget package?
Please help me understand what steps are needed to get node.js, npm, and finally Gulp running