4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Mojito Quickstart

Posted at

必要なもの

システム: Unix-based System
ソフトウェア: C++コンパイラ, Node.js v.0.4.5以上

インストール手順

  1. npmのインストール

$ curl http://npmjs.org/install.sh | sh

もしnpmのインストールに失敗するようであれば、上記のコマンドに sudoを加えて実行してみてください。

$ curl http://npmjs.org/install.sh | sudo sh

2. npmリポジトリから Mojito を入手し、コマンドラインから実行できるようにしましょう。

$ npm install mojito -g

3. Mojitoのインストールが完了したかどうか、ユニットテストを実行しチェックしましょう。

Mojitoアプリケーションの作成

  1. $ mojito create app hello_world

  2. $ cd hello_world

  3. $ mojito create mojit myMojit

アプリケーションの修正

自分の望む文字列を表示させるために、mojits/myMojit/controller.server.jsのコードを以下のように修正しましょう。

YUI.add('myMojit', function(Y) {
  Y.mojito.controller = {
    index: function(ac) {
      ac.done('Hello, world. I have created my first Mojito app at ' + (new Date()) + '.');
    }
  };
});

アプリケーションの実行

  1. hello_world ディレクトリから、Mojitoを実行させましょう

$ mojito start

2. http://localhost:8666/@myMojito/indexにアクセスして、アプリケーションを見ましょう。

3. アプリケーションを停止させるには、Ctrl-Cを押します。

より進んだ内容のチュートリアルに臨むために、Mojito: Getting Startedを読んでください。Mojitoをより学ぶには、Mojito Documentationを見ると良いでしょう。

このドキュメントはMojito Quickstartの翻訳です。

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?