!!!YEOMAN [Node.js][Bower] *http://yeoman.io/ *http://yeoman.io/learning/index.html !!!インストール *yo **scaffoldingツール *bower **http://bower.io/ **パッケージ管理ツール *grunt **http://gruntjs.com/ **ビルドツール !!yo のインストール *Yeomanプロジェクトでメンテナンスされており、Webアプリケーションのscaffolding "足場"を提案 *scaffoldingテンプレートをジェネレーターと呼ぶ *典型的には、yoをインストールしてnpm経由でジェネレーターを利用する ""npmは、Node.jsのためのパッケージマネージャーで、Node.jsにバンドルされている $ npm install -g yo ""npm 1.2.10 以降であれば、自動で、grunt および bower もインストールされる。手動でインストールするには、npm install -g grunt-cli bower !!Bower のインストール *Bower !!Grunt のインストール $ npm install -g grunt !!!scaffoldingの基本的な使い方 *YEOMANジェネレータ **http://yeoman.io/generators/ !!Webアプリケーションの作成 !Webアプリケーション用ジェネレーターのインストール $ npm install -g generator-webapp !ディレクトリの作成と新しいプロジェクトの作成 $ mkdir my-first-yeoman $ cd my-first-yeoman/ ::実行 $ yo webapp