diff options
author | karissa <krmckelv@gmail.com> | 2017-03-15 20:42:26 +0100 |
---|---|---|
committer | karissa <krmckelv@gmail.com> | 2017-03-15 20:42:26 +0100 |
commit | 264ad4f6caec532bbd2483107971e7131a476c39 (patch) | |
tree | 7a1e23c917b7d9aae8657384966a1824440f4707 /docs | |
parent | b067b326ed7b0f47915251e4870686d4dff51aac (diff) | |
download | dat-docs-264ad4f6caec532bbd2483107971e7131a476c39.tar.gz dat-docs-264ad4f6caec532bbd2483107971e7131a476c39.zip |
add install page
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contents.json | 1 | ||||
-rw-r--r-- | docs/install.md | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/docs/contents.json b/docs/contents.json index 228b9e3..4a7a892 100644 --- a/docs/contents.json +++ b/docs/contents.json @@ -1,6 +1,7 @@ { "Dat": { "Introduction": "modules/dat.md", + "Install": "install.md", "How Dat Works": "how-dat-works.md", "Terminology": "terms.md", "FAQ": "faq.md" diff --git a/docs/install.md b/docs/install.md new file mode 100644 index 0000000..016a820 --- /dev/null +++ b/docs/install.md @@ -0,0 +1,19 @@ +# Install Dat + +| | Dat Desktop | +|---------|-------------------| +| MacOS | [Download](https://github.com/datproject/dat-desktop/releases/download/1.0.3/dat-desktop-1.0.3.dmg) | +| Linux | [Build from Source](http://github.com/datproject/dat-desktop) | +| Windows | Coming Soon | + +## In the terminal + +``` +npm install -g dat +``` + +Requires [node 4](http://node.js) or later. If you have a problem with permissions, [see this guide](https://docs.npmjs.com/getting-started/fixing-npm-permissions). Any other problems, see [troubleshooting](/dat#troubleshooting) or the [FAQ](/faq). + +## Node.js + +See our [node.js library](http://github.com/datproject/dat-node), our underlying protocl layer [hyperdrive](http://github.com/mafintosh/hyperdrive) and the [ecosystem guide](https://docs.datproject.org/ecosystem) for a variety of ways to build dat-compatible applications using Node. |