LoginSignup
3
3

More than 5 years have passed since last update.

Meatierを動かしてみた

Last updated at Posted at 2016-08-14

Meatierを動かしてみました

Meatierをインストールして軽く動かしてみるまで
自分用のメモですが、比較的丁寧に書いています。

Meatierのインストール

ほぼ、公式のREADME通りです。

環境

$ node -v
v6.3.1

$ npm -v
3.10.7

webpack2.Xのインストール

2016/08/14現在webpack2.XはBETA版なのでバージョンを指定してインストールします

まずはwebpackのバージョンを確認

公式のchangelog

$ npm view webpack dist-tags
{ latest: '1.13.1', beta: '2.1.0-beta.20' }
最新バージョンの2.1.0-beta.20をインストール
$ npm install -g webpack@2.1.0-beta.20
$ npm list -depth=0 -g
/.nodebrew/node/v6.3.1/lib
├── npm@3.10.7
└── webpack@2.1.0-beta.20

Rethinkdbのインストール

HomebrewでRethinkdbをインストール
$ brew install rethinkdb
Rethinkdbを起動
$ rethinkdb

Meatierをインストール

$ git clone git@github.com:mattkrick/meatier.git
$ cd meatier
$ npm install

サーバーを起動

$ npm run quickstart

ブラウザで http://localhost:3000 にアクセス

3
3
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
3
3