diff options
author | Max Ogden <max@maxogden.com> | 2016-02-28 17:08:01 -0800 |
---|---|---|
committer | Max Ogden <max@maxogden.com> | 2016-02-28 17:08:01 -0800 |
commit | f425bb3e63205a53ae91674b95ff61b485f80fe1 (patch) | |
tree | baa3bcafa561121574217ae44372c07e8cf7d871 | |
parent | fcb601bd539e407814b9f273da9245c6a1d3f083 (diff) | |
download | dat-docs-f425bb3e63205a53ae91674b95ff61b485f80fe1.tar.gz dat-docs-f425bb3e63205a53ae91674b95ff61b485f80fe1.zip |
typo
-rw-r--r-- | diy-dat.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ This document shows how to write your own compatible `dat` client using node modules. -The three essential node modules are called [hyperdrive](https://npmjs.org/hyperdrive), [discovery-swarm](https://npmjs.org/discovery-swarm) and [level](https://npmjs.org/level). Hyperdrive does file synchronization and versioning, discovery-swarm does peer discovery over local networks and the Internet, and level provides a local LevelDB for storing metadata. More details are available in [How Dat Works](how-dat-works.md). The [dat](https://npmjs.org/dat) module itself is just some code that combines these two modules and wraps them in a command-line API. +The three essential node modules are called [hyperdrive](https://npmjs.org/hyperdrive), [discovery-swarm](https://npmjs.org/discovery-swarm) and [level](https://npmjs.org/level). Hyperdrive does file synchronization and versioning, discovery-swarm does peer discovery over local networks and the Internet, and level provides a local LevelDB for storing metadata. More details are available in [How Dat Works](how-dat-works.md). The [dat](https://npmjs.org/dat) module itself is just some code that combines these modules and wraps them in a command-line API. Here's the minimal code needed to download data from a dat: |