herokuを利用してnode.jsを導入する手順

操作方法:
1.herokuアカウントを新規登録する
URL:https://www.heroku.com/

2.herokuのコマンドツール(toolbelt)をダウンロード
https://toolbelt.heroku.com/
mac環境でhomebrewでインストール
brew install heroku

3.PCからログイン
コマンドを開いて、heroku login を入力する

4.アプリケーションを設定
node.jsを利用
4.1 expressを利用して一つのアプリケーションを作成
4.2 package.jsonを修正
サンプルコード
{
“name": “LoveIphone",
“version": “0.0.1",
“private": true,
“scripts": {
“start": “node app.js",
“postinstall": “./node_modules/bower/bin/bower install"
},
“dependencies": {
“express": “~3.4.5",
“jade": “*",
“bower": “*"
},
“engines": {
“node": “0.10.x",
“npm": “1.3.x"
}
}
4.3 pofileファイルを追加
※profileファイルはルート・ディレクトリに置く、Profileとして使う
web: node web.js を追加
4.4 gitを利用して一つの倉庫を作成
4.5
heroku create
git push heroku master

4.6.アプリケーションを実行
heroku ps:scale web=1
4.7 確認
「heroku open」を入力して、ブラウザを開く

5.ドメインを追加

IOS

Posted by arkgame