mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-10 18:49:02 -06:00
978 B
978 B
Hello!
Noms is a content-addressable, append-only, peer-to-peer, structured data store.
In other words, noms is git for data.
This repository contains two reference implementations of the noms protocol - one in Go, and one in JavaScript. It also includes a number of tools and sample applications.
Get Noms
First make sure you have these prerequisites installed:
Then, fetch and build Noms:
git clone https://github.com/attic-labs/noms $GOPATH/src/github.com/attic-labs/noms
go install github.com/attic-labs/noms/cmd/...
cd $GOPATH/src/github.com/attic-labs/noms/clients/go/counter
go build
./counter ldb:/tmp/nomsdb:counter
./counter ldb:/tmp/nomsdb:counter
./counter ldb:/tmp/nomsdb:counter
noms log ldb:/tmp/nomsdb:counter
What next?
- Introduction to Noms
- Command Line Tour
- JavaScript SDK Tour
- Check out our demos (TODO)