Skip to content

Installing Dependencies

Daniel M. Hendricks edited this page Oct 1, 2017 · 4 revisions

This page is intended to provide some tips if you need help installing Node.js, Composer, Gulp, and Bower.

Windows

I am not a Windows user, but this is how I would probably do it:

  1. Install Chocolatey:
    • Right-click and run PowerShell as Administrator: Start > Run > All Programs > Accessories > Windows PowerShell > Windows PowerShell
    • Set the PowerShell ExecutionPolicy to RemoteSigned with this command: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
    • iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
  2. Close PowerShell and reopen it as Administrator.
  3. Install packages:
    • choco install openssh git nodejs.install
    • choco install composer gulp-cli bower

Please feel free to send corrections.

Mac OS X

  1. Install Xcode: xcode-select --install
  2. Install Homebrew, then brew update
  3. Install Node.js: brew install node
  4. Install Composer:
    • curl -sS https://getcomposer.org/installer | php
    • mv composer.phar /usr/local/bin/composer
  5. Install Grunt & Bower:
    • sudo npm install -g gulp-cli
    • sudo npm install -g bower
Clone this wiki locally