Skip to content
Amanuel edited this page Jun 18, 2016 · 6 revisions

#Welcome to the ng-forum wiki!

Most of the stuff are explained on the README here.

##How to run project

$ npm install # Install Npm Dependencies
$ npm install bower -g #If You dont have Bower.
$ bower install # Install Bower Dependencies
$ npm install gulp -g  #If you dont have Gulp.
$ gulp serve # To Serve Files

##Common Errors If you get Errors like npm not defined or something you need to install node.

###Installing Node on Linux:

####Debian Distro(Includes RedHat , Kali Linux, And other forms of Debian):

$sudo apt-get install npm

####Debian 7 or before:

$ sudo apt-get install python g++ make
$ wget http://nodejs.org/dist/node-latest.tar.gz
$ tar xvfvz node-latest.tar.gz
$ cd node-v0.10.21 (replace a version with your own)
$ ./configure
$ make
$ sudo make install

####Ubuntu or Mint

$ sudo apt-get install npm
$ sudo ln -s /usr/bin/nodejs /usr/bin/node

###Windows Have to download from NodeJS Website. This youtube video will help you out! Any other questions please request an issue, if not listed in README.

###Mac This threehouse article does a great job of explaining how to install node and npm on Mac.

Clone this wiki locally