回答編集履歴
1
追補
answer
CHANGED
@@ -3,7 +3,25 @@
|
|
3
3
|
```html
|
4
4
|
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
|
5
5
|
```
|
6
|
-
node.js はインストールが必要なのは、なぜっていうことでしょうか?
|
6
|
+
node.js はインストールが必要なのは、なぜかっていうことでしょうか?
|
7
7
|
答えの一端は、Wiki の記事で掴めるかも。
|
8
8
|
Node.js:モジュール
|
9
|
-
https://ja.wikipedia.org/wiki/Node.js
|
9
|
+
https://ja.wikipedia.org/wiki/Node.js
|
10
|
+
’
|
11
|
+
d3.js でも、数年以上使う場合は、私ならこっちの書き方にします。、
|
12
|
+
http://ja.d3js.info/alignedleft/tutorials/d3/setup/
|
13
|
+
```html
|
14
|
+
<!DOCTYPE html>
|
15
|
+
<html lang="en">
|
16
|
+
<head>
|
17
|
+
<meta charset="utf-8">
|
18
|
+
<title>D3 Test</title>
|
19
|
+
<script type="text/javascript" src="d3/d3.v3.js"></script>
|
20
|
+
</head>
|
21
|
+
<body>
|
22
|
+
<script type="text/javascript">
|
23
|
+
// ここに D3 スクリプトを書きます
|
24
|
+
</script>
|
25
|
+
</body>
|
26
|
+
</html>
|
27
|
+
```
|