2014年8月14日 星期四

ubuntu install less

Install less:

$ npm install -g less

compiler:
$ lessc styles.less


windows安裝法:
http://contest-start.blogspot.tw/2014/06/nodejs-install-less-middleware.html


install bower

Bower目的是用來管理前端環境library的依賴關係。

Bower 需要 nodejs 與 git。

需先安裝:


Install bower
  • $  sudo  npm install bower -g

Install packages
  • $ bower install jquery

如需指定版本
  • bower install #
    ex: bower install jquery#1.11.1
uninstall packages
  • bower uninstall jquery


如此就會將jquery下載到你下命令的路徑資料夾中的 ./bower_components/jquery


Note:在window環境中,需要將git安裝路徑加到環境變數  PATH中,
            如果沒有加入在安裝套件時會出現
      bower ENOGIT git is not installed or not in the PATH。


參考文件:



ubunto install nodejs


  1. sudo add-apt-repository ppa:chris-lea/node.js
  2. sudo apt-get update
  3. sudo apt-get install nodejs
     Note: 1.測試 ,直接在linux終端機中輸入,node -h。
                  2. node -v,可查詢版本。

參考資料:
  • http://www.gtwang.org/2013/12/install-node-js-in-windows-mac-os-x-linux.html
  • https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server

ubuntu install git


Install Git
  • $ sudo apt-get install git

   Note:如果是windows則是使用msysGit


Install Git GUI

  • sudo apt-get install git-cola
          在新目錄中  git init,能夠建立新的git repository


   Note:  linux上有需多種GUI可選擇。
       

Reference