Friday, May 16, 2014

Git- clone the existing github project into the local repository

// just git clone steps
git clone https://github.com/ssthil/AngularJS-Yeoman.git
// just check bower version
bower --v
1.3.3

// just check npm version
npm --v
1.3.24

// just check grunt version
grunt -version
grunt-cli v0.1.13
grunt v0.4.5

//if you are still getting error like, Fatal error: unable to find local grunt then run this
npm install grunt --save-dev

// just check ruby version
ruby -version

// just check compass version
compass -version

// npm install
npm install

// bower install
npm install -g bower

// exit from window Git Bash
exit

// bower install
npm install bower

// bower install run this command
./node_modules/bower/bin/bower install

No comments:

Post a Comment

Javascript find highest and lowest from the given inputs

function highAndLow(numbers){ // numbers = "4 5 29 54 4 0 -214 542 -64 1 -3 6 -6"   let numbersInArr = numbers.split(' '...