-
Notifications
You must be signed in to change notification settings - Fork 0
/
page27.html
92 lines (79 loc) · 3.55 KB
/
page27.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="Meteor,ubuntu,install">
<title>Meteor を Ubuntu 16.04 にインストールする | ざきのメモ</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="favicon.png">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-6967324061031661",
enable_page_level_ads: true
});
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126261673-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-126261673-1');
</script>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js?skin=desert"></script>
<script type="text/javascript" src="vimlike.js"></script>
</head>
<body>
<div class="wrap">
<header>
<h1><a href="index.html">ざきのメモ</a></h1>
</header>
<div class="main">
<article>
<h4>2018/10/19</h4>
<h1>Meteor を Ubuntu 16.04 にインストールする</h1>
<p>JavaScript のフルスタックフレームワークである、Meteor を使う機会があったのでインストールの方法とひな型の作成方法をのこしておきます。</p>
<!-- BannerAd -->
<div class="ad" align="center">
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-6967324061031661" data-ad-slot="8640896526"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
<!-- ad --></div>
<h2>環境</h2>
<ul>
<li>Ubuntu 16.04</li>
</ul>
<h2>インストール</h2>
<p>以下のように curl して実行するだけです。</p>
<pre class="prettyprint"><code>$ curl https://install.meteor.com/ | sh</code></pre>
<p>ちなみに OSX でも同じです。</p>
<h2>ひな型の作成</h2>
<p>以下のように meteor create コマンドを実行するとひな型を作成することができます。</p>
<p>今回は、helloApp という名前でつくります。</p>
<pre class="prettyprint"><code>$ meteor create helloApp</code></pre>
<h2>サーバをたててみる</h2>
<p>先ほどつくったひな型でサーバをたててみます。</p>
<p>ひとまずひな型のルートディレクトリへ移動します。</p>
<pre class="prettyprint"><code>$ cd helloApp</code></pre>
<p>そこで、meteor コマンドをうつとサーバがたちます。</p>
<pre class="prettyprint"><code>$ meteor</code></pre>
<p>デフォルトでは、3000番ポートを使用するので、ブラウザで <a href="http://localhost:3000/">http://localhost:3000/</a> にアクセスすると確認できます。</p>
<h2>参考</h2>
<ul>
<li><a href="https://linuxhostsupport.com/blog/how-to-install-configure-and-deploy-a-meteor-js-app-on-ubuntu-16-04/">How to Install, Configure and Deploy a Meteor.js App on Ubuntu 16.04 – LinuxHostSupport</a></li>
</ul>
<!-- BannerAd -->
<div class="ad" align="center">
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-6967324061031661" data-ad-slot="5584717331"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
<!-- ad --></div>
<ul style="list-style-type:circle">
<li><a href="index.html">トップへもどる</a></li>
</ul>
</article>
<footer>
<small>Copyright © 2017-2021 Ryo Okazaki, all rights reserved.</small>
</footer>
<!-- main --></div>
<!-- wrap --></div>
</body>
</html>