Dat is a decentralized data tool for distributing datasets small and large.
Windows | Mac/Linux |
---|---|
This is the Dat 1.0 pre-release candidate. We want to make Dat into a data versioning, forking, and syncing tool. The first feature set we are working on is easy file distribution.
Key features:
- Distribute large files without copying data to a central server.
- Intelligently sync by deduplicating data between versions.
- Swarm data by connecting those who want data with those who already have it.
- Verify data integrity using strong cryptographic hashes.
- Work everywhere, including in the browser, on the desktop, as well as in R and python.
Dat embraces the Unix philosophy: a modular design with composable parts. All of the pieces can be replaced with alternative implementations as long as they implement the abstract API.
Please note that previous versions of Dat (alpha, beta) are incompatible with the 1.0 pre-release.
To install the 1.0 Pre-release from npm:
npm install dat -g
If you receive an EACCES
error read this guide.
Clone this repository and in a terminal inside of the folder you cloned run this command:
npm link
This should add a dat
command line command to your PATH. Now you can run the dat
command to try it out.
Go into a directory and type
$ cd mydata/
$ dat link
Creating share link for 4 files in 1 directories. 18.54 kB total.
dat://9d011b6c9de26e53e9961c8d8ea840d33e0d8408318332c9502bad112cad9989
Serving data on port 3282 (0 connections)
You are now publishing that data from your computer and it will be publicly accessible as long as your terminal is open. Your friend can get that data like this:
$ dat dat://9d011b6c9de26e53e9961c8d8ea840d33e0d8408318332c9502bad112cad9989
It will start downloading the data into the current location. It will also upload that data to others as long as the terminal is open. Anyone who gets access to the unique dat link will be able to download and re-host a copy of the data. It's distributed mad science!
For more information, see the full project documentation here.