インストール

1049 ワード

まず依存するnodejsとgitをインストールします.
sudo apt-get -y install git nodejs npm nodejs-legacy
git --version && node --version && npm --version
    nodejsのコンポーネントのパス:/usr/lib/nodejs
    ap-get install nodeに注意しないと、
sudo apt-get purge node
# check whether removed completely
sudo dpkg-query -l | grep node
# reset hash table
hash -r
    そしてnpmでインストールしますよ.
sudo npm install --global yo
yo --version && bower --version && grunt --version
    npmのグローバル(--global𞓜-g)にインストールされているファイルのパス:/usr/local/lib/node_modules
    yeoman generatorをインストールします.@後はバージョン番号です.
sudo npm install --global [email protected]
    あるいはyeomanのインタラクティブコマンド行を使用します.
sudo yo
    プロジェクトを作成する:プロジェクトのディレクトリを作成し、yeomanのgeneratorを起動する(anglarを例にする)
mkdir ~/myApp && cd ~/myApp
yo angular
bower install
npm install
grunt serve
    gruntはデフォルトで現在のディレクトリのGuntfile.jsまたはGuntfile.co ffeeファイルを読み込み、傍受ポートとドメイン名を変更することができます.