mirror of
https://github.com/amark/gun.git
synced 2025-06-23 06:22:32 +00:00
280 lines
17 KiB
Markdown
280 lines
17 KiB
Markdown
<p><a href="https://gun.eco/"><img width="40%" src="https://cldup.com/TEy9yGh45l.svg"/></a><img width="50%" align="right" vspace="25" src="https://gun.eco/see/demo.gif"/></p>
|
|
|
|
[](https://www.jsdelivr.com/package/npm/gun)
|
|
[](https://travis-ci.org/amark/gun)
|
|
[](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Famark%2Fgun?ref=badge_shield)
|
|
[](https://gitter.im/amark/gun)
|
|
|
|
**GUN** is an _ecosystem_ of tools that let you build [community run](https://www.nbcnews.com/tech/tech-news/these-technologists-think-internet-broken-so-they-re-building-another-n1030136) and encrypted applications.
|
|
|
|
Currently, [Internet Archive](https://news.ycombinator.com/item?id=17685682) and HackerNoon run GUN in production.
|
|
|
|
Decentralized alternatives to [Reddit](https://notabug.io/t/whatever/comments/36588a16b9008da4e3f15663c2225e949eca4a15/gpu-bot-test), [YouTube](https://d.tube/), [Wikipedia](https://news.ycombinator.com/item?id=17685682), etc. have already pushed terabytes of daily P2P traffic on GUN. We are a [friendly community](https://gitter.im/amark/gun) creating a free fun future for freedom:
|
|
|
|
<table>
|
|
<tr>
|
|
<a href="https://youtu.be/s_m16-w6bBI"><img width="31%" align="left" src="https://gun.eco/see/3dvr.gif" title="3D VR"/></a>
|
|
<a href="https://github.com/cstefanache/cstefanache.github.io/blob/master/_posts/2016-08-02-gun-db-artificial-knowledge-sharing.md#gundb"><img width="31%" align="left" src="https://gun.eco/see/aiml.gif" title="AI/ML"/></a>
|
|
<a href="http://gps.gunDB.io/"><img width="31%" align="left" src="https://gun.eco/see/gps.gif" title="GPS"/></a>
|
|
<a href="https://github.com/lmangani/gun-scape#gun-scape"><img width="31%" align="left" src="https://gun.eco/see/dataviz.gif" title="Data Viz"/></a>
|
|
<a href="https://github.com/amark/gun/wiki/Auth"><img width="31%" align="left" src="https://gun.eco/see/p2p.gif" title="P2P"/></a>
|
|
<a href="https://github.com/Stefdv/gun-ui-lcd#okay-what-about-gundb-"><img width="31%" align="left" src="https://gun.eco/see/iot.gif" title="IoT"/></a>
|
|
</tr>
|
|
</table>
|
|
<center><a href="https://youtu.be/1ASrmQ-CwX4"><img src="https://gun.eco/see/ar.gif" title="AR"/></a></center>
|
|
|
|
The ecosystem is one nice stack of technologies that looks like this: (names -> use case)
|
|
|
|
<div><img width="48%" src="https://gun.eco/see/stack.png"/>
|
|
<img width="48%" align="right" src="https://gun.eco/see/layers.png"/></div>
|
|
|
|
For now, it is best to start with GUN and _just use it_ to learn the basics, since it is _**so easy**_: (**or** want to read more? Skip ahead to the "[What is GUN?](#what-is-gun)" section.)
|
|
|
|
## Quickstart
|
|
|
|
- Try the [interactive tutorial](https://gun.eco/docs/Todo-Dapp) in the browser (**5min** ~ average developer).
|
|
- Or `npm install gun` and run the examples with `cd node_modules/gun && npm start` (**5min** ~ average developer).
|
|
|
|
> **Note:** If you don't have [node](http://nodejs.org/) or [npm](https://www.npmjs.com/), read [this](https://github.com/amark/gun/blob/master/examples/install.sh) first.
|
|
> If the `npm` command line didn't work, you may need to `mkdir node_modules` first or use `sudo`.
|
|
|
|
- An online demo of the examples are available here: http://gunjs.herokuapp.com/
|
|
- Or write a quick app: ([try now in jsbin](http://jsbin.com/sovihaveso/edit?js,console))
|
|
```html
|
|
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
|
|
<script>
|
|
// var Gun = require('gun'); // in NodeJS
|
|
// var Gun = require('gun/gun'); // in React
|
|
var gun = Gun();
|
|
|
|
gun.get('mark').put({
|
|
name: "Mark",
|
|
email: "mark@gunDB.io",
|
|
});
|
|
|
|
gun.get('mark').on(function(data, key){
|
|
console.log("update:", data);
|
|
});
|
|
</script>
|
|
```
|
|
- Or try something **mind blowing**, like saving circular references to a table of documents! ([play](http://jsbin.com/wefozepume/edit?js,console))
|
|
```javascript
|
|
var cat = {name: "Fluffy", species: "kitty"};
|
|
var mark = {boss: cat};
|
|
cat.slave = mark;
|
|
|
|
// partial updates merge with existing data!
|
|
gun.get('mark').put(mark);
|
|
|
|
// access the data as if it is a document.
|
|
gun.get('mark').get('boss').get('name').once(function(data, key){
|
|
// `val` grabs the data once, no subscriptions.
|
|
console.log("Mark's boss is", data);
|
|
});
|
|
|
|
// traverse a graph of circular references!
|
|
gun.get('mark').get('boss').get('slave').once(function(data, key){
|
|
console.log("Mark is the slave!", data);
|
|
});
|
|
|
|
// add both of them to a table!
|
|
gun.get('list').set(gun.get('mark').get('boss'));
|
|
gun.get('list').set(gun.get('mark'));
|
|
|
|
// grab each item once from the table, continuously:
|
|
gun.get('list').map().once(function(data, key){
|
|
console.log("Item:", data);
|
|
});
|
|
|
|
// live update the table!
|
|
gun.get('list').set({type: "cucumber", goal: "scare cat"});
|
|
```
|
|
|
|
Want to keep building more? **Jump to [THE DOCUMENTATION](#documentation)!**
|
|
|
|
# What is GUN?
|
|
|
|
First & foremost, GUN is **a community of the nicest and most helpful people** out there. So [I want to invite you](https://gitter.im/amark/gun) to come tell us about what **you** are working on & wanting to build (new or old school alike! Just be nice as well.) and ask us your questions directly. :)
|
|
|
|
On that note, let's get some official shout outs covered first:
|
|
|
|
### Support
|
|
|
|
<p align="center">
|
|
Thanks to:<br/>
|
|
<a href="https://github.com/robertheessels">Robert Heessels</a>,
|
|
<a href="http://qxip.net/">Lorenzo Mangani</a>,
|
|
<a href="https://nlnet.nl/">NLnet Foundation</a>,
|
|
<a href="http://github.com/samliu">Sam Liu</a>,
|
|
<a href="http://github.com/ddombrow">Daniel Dombrowsky</a>,
|
|
<a href="http://github.com/vincentwoo">Vincent Woo</a>,
|
|
<a href="http://github.com/coolaj86">AJ ONeal</a>,
|
|
<a href="http://github.com/ottman">Bill Ottman</a>,
|
|
<a href="http://github.com/mikewlange">Mike Lange</a>,
|
|
<a href="http://github.com/ctrlplusb">Sean Matheson</a>,
|
|
<a href="http://github.com/alanmimms">Alan Mimms</a>,
|
|
<a href="https://github.com/dfreire">Dário Freire</a>,
|
|
<a href="http://github.com/velua">John Williamson</a>,
|
|
<a href="http://github.com/finwo">Robin Bron</a>,
|
|
<a href="http://github.com/ElieMakhoul">Elie Makhoul</a>,
|
|
<a href="http://github.com/mikestaub">Mike Staub</a>,
|
|
<a href="http://github.com/bmatusiak">Bradley Matusiak</a>
|
|
</p>
|
|
|
|
- Join others in sponsoring code: https://www.patreon.com/gunDB !
|
|
- Ask questions: http://stackoverflow.com/questions/tagged/gun ?
|
|
- Found a bug? Report at: https://github.com/amark/gun/issues ;
|
|
- **Need help**? Chat with us: https://gitter.im/amark/gun .
|
|
|
|
### History
|
|
|
|
[GUN](https://gun.eco) was created by [Mark Nadal](https://twitter.com/marknadal) in 2014 after he had spent 4 years trying to get his collaborative web app to scale up with traditional databases.
|
|
|
|
<img width="250px" src="https://gun.eco/see/problem.png" align="left" title="pain point" style="margin: 0 1em 1em 0"> After he realized [Master-Slave database architecture causes one big bottleneck](https://gun.eco/distributed/matters.html), he (as a complete newbie outsider) naively decided **to question the status quo** and shake things up with controversial, heretical, and contrarian experiments:
|
|
|
|
**The NoDB** - no master, no servers, no "single source of truth", not built with a real programming language or real hardware, no DevOps, no locking, not *just* SQL or NoSQL but both (**all** - graphs, documents, tables, key/value).
|
|
|
|
The goal was to build a P2P database that could survive living inside **any** browser, and could correctly sync data between **any** device after assuming **any** offline-first activity.
|
|
|
|
<img src="https://gun.eco/see/compare.png" title="comparison table">
|
|
|
|
Technically, **GUN is a graph synchronization protocol** with a *lightweight embedded engine*, capable of doing *[20M+ API ops/sec](https://gun.eco/docs/Performance)* in **just ~9KB gzipped size**.
|
|
|
|
## Documentation
|
|
|
|
<table>
|
|
<tr>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/API">API reference</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/Todo-Dapp">Tutorials</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://github.com/amark/gun/tree/master/examples">Examples</a></h3></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="border: 0;"><h3><a href="https://github.com/brysgo/graphql-gun">GraphQL</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://github.com/PenguinMan98/electrontest">Electron</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/React-Native">React Native</a></h3></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="border: 0;"><h3><a href="https://github.com/sjones6/vue-gun">Vue</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://github.com/amark/gun/wiki/React-Tutorial">React</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://github.com/Stefdv/gun-ui-lcd#syncing">Webcomponents</a></h3></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/CAP-Theorem">CAP Theorem Tradeoffs</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/distributed/matters.html">How Data Sync Works</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/Porting-GUN">How GUN is Built</a></h3></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/Auth">Crypto Auth</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/Awesome-GUN">Modules</a></h3></td>
|
|
<td style="border: 0;"><h3><a href="https://gun.eco/docs/Roadmap">Roadmap</a></h3></td>
|
|
</tr>
|
|
</table>
|
|
|
|
This would not be possible without **community contributors**, big shout out to:
|
|
|
|
**[ajmeyghani](https://github.com/ajmeyghani) ([Learn GUN Basics with Diagrams](https://medium.com/@ajmeyghani/gundb-a-graph-database-in-javascript-3860a08d873c))**; **[anywhichway](https://github.com/anywhichway) ([Block Storage](https://github.com/anywhichway/gun-block))**; **[beebase](https://github.com/beebase) ([Quasar](https://github.com/beebase/gun-vuex-quasar))**; **[BrockAtkinson](https://github.com/BrockAtkinson) ([brunch config](https://github.com/BrockAtkinson/brunch-gun))**; **[Brysgo](https://github.com/brysgo) ([GraphQL](https://github.com/brysgo/graphql-gun))**; **[d3x0r](https://github.com/d3x0r) ([SQLite](https://github.com/d3x0r/gun-db))**; **[forrestjt](https://github.com/forrestjt) ([file.js](https://github.com/amark/gun/blob/master/lib/file.js))**; **[hillct](https://github.com/hillct) (Docker)**; **[JosePedroDias](https://github.com/josepedrodias) ([graph visualizer](http://acor.sl.pt:9966))**; **[JuniperChicago](https://github.com/JuniperChicago) ([cycle.js bindings](https://github.com/JuniperChicago/cycle-gun))**; **[jveres](https://github.com/jveres) ([todoMVC](https://github.com/jveres/todomvc))**; **[kristianmandrup](https://github.com/kristianmandrup) ([edge](https://github.com/kristianmandrup/gun-edge))**; **[Lightnet](https://github.com/Lightnet)** ([Awesome Vue User Examples](https://glitch.com/edit/#!/jsvuegunui?path=README.md:1:0) & [User Kitchen Sink Playground](https://gdb-auth-vue-node.glitch.me/)); **[lmangani](https://github.com/lmangani) ([Cytoscape Visualizer](https://github.com/lmangani/gun-scape), [Cassandra](https://github.com/lmangani/gun-cassandra), [Fastify](https://github.com/lmangani/fastify-gundb), [LetsEncrypt](https://github.com/lmangani/polyGun-letsencrypt))**; **[mhelander](https://github.com/mhelander) ([SEA](https://github.com/amark/gun/blob/master/sea.js))**; [omarzion](https://github.com/omarzion) ([Sticky Note App](https://github.com/omarzion/stickies)); [PsychoLlama](https://github.com/PsychoLlama) ([LevelDB](https://github.com/PsychoLlama/gun-level)); **[RangerMauve](https://github.com/RangerMauve) ([schema](https://github.com/gundb/gun-schema))**; **[robertheessels](https://github.com/swifty) ([gun-p2p-auth](https://github.com/swifty/gun-p2p-auth))**; **[rogowski](https://github.com/rogowski) (AXE)**; [sbeleidy](https://github.com/sbeleidy); **[sbiaudet](https://github.com/sbiaudet) ([C# Port](https://github.com/sbiaudet/cs-gun))**; **[Sean Matheson](https://github.com/ctrlplusb) ([Observable/RxJS/Most.js bindings](https://github.com/ctrlplusb/gun-most))**; **[Shadyzpop](https://github.com/Shadyzpop) ([React Native example](https://github.com/amark/gun/tree/master/examples/react-native))**; **[sjones6](https://github.com/sjones6) ([Flint](https://github.com/sjones6/gun-flint))**; **[Stefdv](https://github.com/stefdv) (Polymer/web components)**; **[zrrrzzt](https://github.com/zrrrzzt) ([JWT Auth](https://gist.github.com/zrrrzzt/6f88dc3cedee4ee18588236756d2cfce))**; **[xmonader](https://github.com/xmonader) ([Python Port](https://github.com/xmonader/pygundb))**;
|
|
|
|
I am missing many others, apologies, will be adding them soon!
|
|
|
|
## Testing
|
|
|
|
Tests may be run with `npm test`. Tests will trigger persistent writes to the DB, so subsequent runs of the test will fail. You must clear the DB before running the tests again. This can be done by running the following command in the project directory.
|
|
|
|
```bash
|
|
rm -rf *data*
|
|
```
|
|
|
|
### Additional Cryptography Libraries
|
|
|
|
> These are only needed for NodeJS, they shim the native Browser WebCrypto API.
|
|
|
|
If you want to use [SEA](https://gun.eco/docs/SEA) for `User` auth and security, you will need to install:
|
|
|
|
`npm install text-encoding isomorphic-webcrypto --save`
|
|
|
|
Then you can require [SEA](https://gun.eco/docs/SEA) without an error:
|
|
|
|
```javascript
|
|
var GUN = require('gun/gun');
|
|
var SEA = require('gun/sea');
|
|
```
|
|
|
|
## Deploy
|
|
|
|
> Note: The default examples that get auto-deployed on `npm start` CDN-ify all GUN files, modules, & storage.
|
|
|
|
To quickly spin up a GUN relay peer for your development team, utilize either [Heroku](http://heroku.com), [Docker](http://docker.com), any variant thereof [Dokku](http://dokku.viewdocs.io/dokku/), [Flynn.io](http://flynn.io), [now.sh](https://zeit.co/now), etc. ! Or use all of them so your relays are decentralized too!
|
|
|
|
### [Heroku](https://www.heroku.com/)
|
|
|
|
[](https://heroku.com/deploy?template=https://github.com/amark/gun)
|
|
|
|
> Heroku deletes your data every 15 minutes, one way to fix this is by adding [cheap storage](https://gun.eco/docs/Using-Amazon-S3-for-Storage).
|
|
|
|
Or:
|
|
|
|
```bash
|
|
git clone https://github.com/amark/gun.git
|
|
cd gun
|
|
heroku create
|
|
git push -f heroku HEAD:master
|
|
```
|
|
|
|
Then visit the URL in the output of the 'heroku create' step, in a browser.
|
|
|
|
### [Now.sh](https://zeit.co/now/)
|
|
|
|
```bash
|
|
npm install -g now
|
|
now --npm amark/gun
|
|
```
|
|
|
|
Then visit the URL in the output of the 'now --npm' step, in your browser.
|
|
|
|
### [Unebo](https://unubo.app/)
|
|
|
|
Fork this GUN repo (Unebo only deploys from your own GitHub repo's).
|
|
Add a Node.js app, select your GUN fork, set `npm start` start as the command and deploy.
|
|
|
|
Then visit the deployed app by following the 'view app' button, in your browser.
|
|
|
|
### [Docker](https://www.docker.com/)
|
|
|
|
> Warning: Docker image is community contributed and may be old with missing security updates, please check version numbers to compare.
|
|
|
|
[](https://hub.docker.com/r/gundb/gun/) [](https://microbadger.com/images/gundb/gun "Get your own image badge on microbadger.com") [](https://hub.docker.com/r/gundb/gun/) [](https://hub.docker.com/r/gundb/gun/)
|
|
|
|
Pull from the [Docker Hub](https://hub.docker.com/r/gundb/gun/) [](https://microbadger.com/images/gundb/gun). Or:
|
|
|
|
```bash
|
|
docker run -p 8765:8765 gundb/gun
|
|
```
|
|
|
|
Or build the [Docker](https://docs.docker.com/engine/installation/) image locally:
|
|
|
|
```bash
|
|
git clone https://github.com/amark/gun.git
|
|
cd gun
|
|
docker build -t myrepo/gundb:v1 .
|
|
docker run -p 8765:8765 myrepo/gundb:v1
|
|
```
|
|
|
|
Or, if you prefer your Docker image with metadata labels (Linux/Mac only):
|
|
|
|
```bash
|
|
npm run docker
|
|
docker run -p 8765:8765 username/gun:git
|
|
```
|
|
|
|
Then visit [http://localhost:8765](http://localhost:8765) in your browser.
|
|
|
|
## License
|
|
|
|
Designed with ♥ by Mark Nadal, the GUN team, and many amazing contributors.
|
|
|
|
Openly licensed under [Zlib / MIT / Apache 2.0](https://github.com/amark/gun/blob/master/LICENSE.md).
|
|
|
|
[](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Famark%2Fgun?ref=badge_large)
|
|
|
|
[YouTube](https://www.youtube.com/channel/UCQAtpf-zi9Pp4__2nToOM8g) . [Twitter](https://twitter.com/marknadal)
|