Installing Node and StrongLoop on Windows presents some special challenges and requirements.
Important:
StrongLoop Process Manager does not run on Windows. Therefore, you cannot use it to deploy an application to a Windows system. However, you can build and deploy on a Windows system and deploy from there to a Linux or MacOS system.
If you want features such as application profiling or monitoring, you must install compiler tools and Python before you start. See Installing compiler tools for more information.
The Node package manager tool, npm, uses Git to download packages from Github.
To install Git:
Configuration
By default, Git on Windows does not support paths longer than 260 characters; to avoid errors you must enable long paths with the following command:
C:\> git config --system core.longpaths true
Tip: For best results, use the latest LTS (long-term support) release of Node.js.
The version of npm installed as part of the Node installation has known issues on Windows. To avoid these problems, install the latest version of npm:
C:\> npm install -g npm
Important:
Node does not support Cygwin. You must use the Windows Command Prompt (shell).
Follow these steps:
Install StrongLoop:
C:\> npm install -g strongloop
Try the following:
Restart Windows, to ensure configuration has taken effect.
Verify dependencies are installed:
python --version
Should be 2.7.xnode --version
Should be v0.10.x or v0.12.x.npm --version
Should be 1.x or 2.x.REVIEW COMMENT from Rand
FIXME any way to determine what vs– is installed? FIXME is there any way to determine what python and msbuild node-gyp has found?</div>
If you continue to have problems installing StrongLoop:
In general, provide as much information as possible. If npm install failed, attach the npm-debug.log file.
Ensure you can install a simple npm package. Enter this command in a Windows Command Prompt shell:
C:\> npm install -g semver
You should not see any error messages. Then enter:
C:\> semver --help
You should see a usage message displayed in the Command Prompt window.
Ensure you can install a simple Node compiled addon. Enter this command in a Windows Command Prompt shell:
C:\> npm install -g buffertools
This command should compile and install without errors.
If you have multiple versions of python installed, you can select which on is used by npm for building compiled addons:
npm config set python c:/Python2.7/pythonIf you have multiple versions of Microsoft Visual Studio installed, you can select which one npm uses to build compiled add-ons like this:
set GYP_MSVS_VERSION=2012, ornpm --msvs_version=2012 or --msvs_version=2013 (as appropriate) to the end of npm install commands, for example: npm install -g strongloop --msvs_version=2012