ubuntuにmeteor.jsを入れてみました。
【環境】
Ubuntu12.04
meteor.jsはjavascritptによるWebアプリのフレームワーク。
クライアントサイドJS(ブラウザで動くJS)やサーバーサイドJS(Node.jsとか)ではなく、
その両方で動く(Isomorphicな)フレームワークです。
まずは、インストール用のスクリプトを叩く
$ wget install.meteor.com
$ sudo sh index.html
これでインストールは完了。パッケージはdebパッケージでインストールしてくれる。
インストールされた内容は以下でチェックできる。
$ dpkg –listfiles meteor
ここまでで環境構築完了。
次にに、サンプルアプリケーションを作ってみる。
/usr/lib/meteor/examples/ 配下にサンプルがインストールされてる。
$ ls
todos wordplay leaderbord
ここではtodos 展開する。適当なディレクトリで以下のコマンドを叩く
$ meteor create –example todos
todos: created.
To run your new app:
cd todos
meteor
これで、叩いた場所に todosディレクトリが作られる。
それでは実行。
$ cd todos
$ meteor
[[[[[ ~/todos ]]]]]
Running on: http://localhost:3000/
///////////////////////////////////////////////
///////////////////////////////////////////////
meteor is out of date. Please run;
meteor update
///////////////////////////////////////////////
///////////////////////////////////////////////
これで、http://localhost:3000 にアクセスするとtodo管理アプリできている。
次に実際に、プロジェクトを作成してみる
$ meteor create firstApp
firstApp: created.
To run your new app:
cd firstApp
meteor
$ ls
firstApp.css firstApp.html firstApp.js
とりあえずは何か作ってみよう。