質問編集履歴
2
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Node.jsのインストールについて
|
1
|
+
Node.jsの開発環境のインストールについて
|
test
CHANGED
File without changes
|
1
情報もれ
test
CHANGED
File without changes
|
test
CHANGED
@@ -29,3 +29,27 @@
|
|
29
29
|
|
30
30
|
|
31
31
|
使用しているのはMac os です。
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
書き忘れていたので
|
36
|
+
|
37
|
+
追記 app.jsの中身です。
|
38
|
+
|
39
|
+
const express = require('express');
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
const app = express();
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
app.get('/', (req, res) => {
|
48
|
+
|
49
|
+
res.render('hello.ejs');
|
50
|
+
|
51
|
+
});
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
app.listen(3000);
|