forked from dat-ecosystem-archive/old-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docs.html
105 lines (100 loc) · 4.83 KB
/
docs.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
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>dat</title>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700' rel='stylesheet' type='text/css'>
<link href="normalize.css" media="all" rel="stylesheet" type="text/css" />
<link href="style.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<div class="header-nav">
<div class="header-nav-links">
<ul class="header-nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="docs.html">Docs</a></li>
</ul>
<a href="https://github.com/maxogden/dat" target="_blank"><div class="button"><span class="octocat"></span>View on GitHub</div></a>
</div>
<div class="header-logo">dat</div>
</div>
<div class="header-info">
<div class="header-title">Documentation</div>
</div>
</div>
<div class="content">
<div class="content-text-container">
<div class="content-text-intro">There are three different ways to use dat: on the CLI (command line), using HTTP with the dat REST API, or from Node.js with the dat JavaScript API.</div>
<div class="content-text-paragraph">All of the documentation linked to below is hosted on the <a href="https://github.com/maxogden/dat">dat GitHub repository</a>. If you find bugs or have questions please let us know by opening an issue or sending a pull request.</div>
<div class="content-text-paragraph">The best place to start is the <a href="https://github.com/maxogden/dat/blob/master/docs/getting-started.md">getting started guide</a>. We also have detailed API documentation:</div>
<ul>
<li><a href="https://github.com/maxogden/dat/blob/master/docs/rest-api.md">REST API</a></li>
<li><a href="https://github.com/maxogden/dat/blob/master/docs/js-api.md">JavaScript API</a></li>
<li><a href="https://github.com/maxogden/dat/blob/master/docs/cli-usage.md">Command line API</a></li>
</ul>
</div>
</div>
<div class="footer">
<div class="footer-directory">
<div class="footer-column">
<div class="footer-heading">Explore</div>
<div class="footer-horizontal-rule"></div>
<ul class="footer-nav-list">
<li><span class="rsaquo">›</span><a href="team.html">Team</a></li>
<li><span class="rsaquo">›</span><a href="http://www.stickermule.com/marketplace/1497-dat-data">Get Stickers</a></li>
</ul>
</div>
<div class="footer-column">
<div class="footer-heading">Learn</div>
<div class="footer-horizontal-rule"></div>
<ul class="footer-nav-list">
<li><span class="rsaquo">›</span><a href="about.html">About</a></li>
<li><span class="rsaquo">›</span><a href="docs.html">Docs</a></li>
</ul>
</div>
<div class="footer-column">
<div class="footer-heading">Connect</div>
<div class="footer-horizontal-rule"></div>
<ul class="footer-nav-list">
<li><a href="https://twitter.com/dat_project"><span class="twitter-green"></span>Twitter</a></li>
<li><a href="https://github.com/maxogden/dat"><span class="octocat-green"></span>GitHub</a></li>
</ul>
</div>
<div class="footer-column">
<div class="footer-heading">Support</div>
<div class="footer-horizontal-rule"></div>
<div class="code-container">
<span class="bitcoin"></span>
19DqLuAssLa2XpVd8GabgMBCFTjXPYTbbV
</div>
<div class="footer-subtitle">Support dat by donating Bitcoins to our address above.</div>
<div class="footer-subtitle">You can also <a href="https://coinbase.com/checkouts/4c07b345e596636fbd6b269abbf1689f" target="_blank">donate with Coinbase</a>.</div>
</div>
</div>
<div class="footer-credits">
<span class="footer-emphasized">dat</span> • 2014 • design by <a href="https://github.com/flipside-org">flipside</a> • page source on <a href="https://github.com/datproject/website">github</a>
</div>
</div>
<script type="text/javascript" src="gravatar.js"></script>
<script type="text/javascript">
var gravatar = require('gravatar')
var peeps = document.querySelectorAll('.content-card-small-avatar')
for (var i = 0; i < peeps.length; i++) {
var peep = peeps[i]
var username = peep.getAttribute('data-user')
if (!username) continue
peep.setAttribute('style', "background-image: url('https://github.com/" + username + ".png')")
}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49664853-1', 'dat-data.com');
ga('send', 'pageview');
</script>
</body>
</html>