Build Gitter

GUN is an ecosystem of tools that let you build community run and encrypted applications - like an Open Source Firebase or a Decentralized Dropbox.

The Internet Archive and 100s of other apps run GUN in-production. GUN was also part of Twitter's bluesky initiative!

  • Multiplayer by default with realtime p2p state synchronization!
  • Graph data lets you use key/value, tables, documents, videos, & more!
  • Local-first, offline, and decentralized with end-to-end encryption.

Decentralized alternatives to Zoom, Reddit, Instagram, Slack, YouTube, Stripe, Wikipedia, Facebook Horizon and more have already pushed terabytes of daily P2P traffic on GUN. We are a friendly community creating a free fun future for freedom:

Quickstart

GUN is super easy to get started with:

  • Try the interactive tutorial 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 or npm, read this first. If the npm command line didn't work, you may need to mkdir node_modules first or use sudo.

<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
<script>
// import GUN from 'gun'; // in ESM
// GUN = require('gun'); // in NodeJS
// GUN = require('gun/gun'); // in React
gun = GUN();

gun.get('mark').put({
  name: "Mark",
  email: "[email protected]",
});

gun.get('mark').on((data, key) => {
  console.log("realtime updates:", data);
});

setInterval(() => { gun.get('mark').get('live').put(Math.random()) }, 9);
</script>
  • Or try something mind blowing, like saving circular references to a table of documents! (play)
cat = {name: "Fluffy", species: "kitty"};
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){
  // `once` 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 cat's 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: "jumping cat"});

Want to keep building more? Jump to THE DOCUMENTATION!

About

First & foremost, GUN is a community of the nicest and most helpful people out there. So I want to invite you 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. :)


Watch the 100 second intro!

The GUN ecosystem stack is a collection of independent and modular tools covering everything from CRDT conflict resolution, cryptographic security & encryption, radix storage serialization, mesh networking & routing algorithms, to distributed systems correctness & load testing, CPU scheduled JSON parser to prevent UI lag, and more!

On that note, let's get some official shout outs covered first:

Support

Thanks to:

              

Robert Heessels, Lorenzo Mangani, NLnet Foundation, Sam Liu, Daniel Dombrowsky, Vincent Woo, AJ ONeal, Bill Ottman, Mike Lange, Sean Matheson, Alan Mimms, Dário Freire, John Williamson, Robin Bron, Elie Makhoul, Mike Staub, Bradley Matusiak, Jeff Cook, Nico, Aaron Artille, Tim Robinson, Fabian Stamm, Mike Staub, Hunter Owens, Jacob Millner, Gerrit Balindt, Gabriel Lemon, Murage Martin, Jason Stallings

History

GUN was created by Mark Nadal in 2014 after he had spent 4 years trying to get his collaborative web app to scale up with traditional databases.

After he realized Master-Slave database architecture causes one big bottleneck, 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.

Technically, GUN is a graph synchronization protocol with a lightweight embedded engine, capable of doing 20M+ API ops/sec in just ~9KB gzipped size.

Documentation

This would not be possible without community contributors, big shout out to:

ajmeyghani (Learn GUN Basics with Diagrams); anywhichway (Block Storage); beebase (Quasar); BrockAtkinson (brunch config); Brysgo (GraphQL); d3x0r (SQLite); forrestjt (file.js); hillct (Docker); JosePedroDias (graph visualizer); JuniperChicago (cycle.js bindings); jveres (todoMVC); kristianmandrup (edge); Lightnet (Awesome Vue User Examples & User Kitchen Sink Playground); lmangani (Cytoscape Visualizer, Cassandra, Fastify, LetsEncrypt); mhelander (SEA); omarzion (Sticky Note App); PsychoLlama (LevelDB); RangerMauve (schema); robertheessels (gun-p2p-auth); rogowski (AXE); sbeleidy; sbiaudet (C# Port); Sean Matheson (Observable/RxJS/Most.js bindings); Shadyzpop (React Native example); sjones6 (Flint); RIP Stefdv (Polymer/web components); zrrrzzt (JWT Auth); xmonader (Python Port);

I am missing many others, apologies, will be adding them soon! This list is infinitely old & way out of date, if you want to be listed in it please make a PR! :)

Testing

You will need to npm install -g mocha first. Then in the gun root folder run 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 rm -rf *data* command in the project directory.

Shims

These are only needed for NodeJS & React Native, they shim the native Browser WebCrypto API.

If you want to use SEA for User auth and security, you will need to install:

npm install @peculiar/webcrypto --save

Please see our React Native docs for installation instructions!

Then you can require SEA without an error:

GUN = require('gun/gun');
SEA = require('gun/sea');

Deploy

Note: The default examples that get auto-deployed on npm start CDN-ify all GUN files, modules, & storage.

Note: Moving forward, AXE will start to automatically cluster your peer into a shared DHT. You may want to disable this to run an isolated network.

Note: When deploying a web application using GUN on a cloud provider, you may have to set CI=false in your .env. This prevents GUN-specific warnings from being treated as errors when deploying your app. You may also resolve this by modifying your webpack config to not try to build the GUN dependencies.

To quickly spin up a GUN relay peer for your development team, utilize Heroku, Docker, or any others listed below. Or some variant thereof Dokku, K8s, etc. ! Or use all of them so your relays are decentralized too!

Linux

SSH into the home directory of a clean OS install with sudo ability. Set any environment variables you need (see below), then do:

curl -o- https://raw.githubusercontent.com/amark/gun/master/examples/install.sh | bash

Read install.sh first! If curl is not found, copy&paste the contents of install.sh into your ssh.

You can now safely CTRL+A+D to escape without stopping the peer. To stop everything killall screen or killall node.

Environment variables may need to be set like export HTTPS_CERT=~/cert.pem HTTPS_KEY=~/key.pem PORT=443. You can also look at a sample nginx config. For production deployments, you probably will want to use something like pm2 or better to keep the peer alive after machine reboots.

Deploy GUN in one-click with Dome and receive a free trial:

Deploy to Dome

Deploy

Heroku deletes your data every 15 minutes, one way to fix this is by adding cheap storage.

Or:

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. Make sure to set any environment config vars in the settings tab.

Deploy

Then visit the URL in the output of the 'now --npm' step, in your browser.

Warning: Docker image is community contributed and may be old with missing security updates, please check version numbers to compare.

Docker Automated build Docker Pulls Docker Stars

Pull from the Docker Hub . Or:

docker run -p 8765:8765 gundb/gun

Or build the Docker image locally:

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):

npm run docker
docker run -p 8765:8765 username/gun:git

Then visit 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.

FOSSA Status

YouTube . Twitter

amark/gun

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 22475123,
"defaultBranch": "master",
"name": "gun",
"ownerLogin": "amark",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2014-07-31T15:52:10.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/433412?v=4",
"public": true,
"private": false,
"isOrgOwned": false
},
"currentUser": null,
"refInfo": {
"name": "master",
"listCacheKey": "v0:1705516154.0",
"canEdit": false,
"refType": "branch",
"currentOid": "7cc4cce1a34cd0f7ebaf90b7de221688dc23cc54"
},
"tree": {
"items": [
{
"name": ".github",
"path": ".github",
"contentType": "directory"
},
{
"name": "examples",
"path": "examples",
"contentType": "directory"
},
{
"name": "hooks",
"path": "hooks",
"contentType": "directory"
},
{
"name": "lib",
"path": "lib",
"contentType": "directory"
},
{
"name": "sea",
"path": "sea",
"contentType": "directory"
},
{
"name": "src",
"path": "src",
"contentType": "directory"
},
{
"name": "test",
"path": "test",
"contentType": "directory"
},
{
"name": "types",
"path": "types",
"contentType": "directory"
},
{
"name": ".dockerignore",
"path": ".dockerignore",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": ".npmignore",
"path": ".npmignore",
"contentType": "file"
},
{
"name": ".prettierignore",
"path": ".prettierignore",
"contentType": "file"
},
{
"name": ".travis.yml",
"path": ".travis.yml",
"contentType": "file"
},
{
"name": "CHANGELOG.md",
"path": "CHANGELOG.md",
"contentType": "file"
},
{
"name": "Dockerfile",
"path": "Dockerfile",
"contentType": "file"
},
{
"name": "LICENSE.md",
"path": "LICENSE.md",
"contentType": "file"
},
{
"name": "Procfile",
"path": "Procfile",
"contentType": "file"
},
{
"name": "README.md",
"path": "README.md",
"contentType": "file"
},
{
"name": "RELEASE.md",
"path": "RELEASE.md",
"contentType": "file"
},
{
"name": "SECURITY.md",
"path": "SECURITY.md",
"contentType": "file"
},
{
"name": "app.json",
"path": "app.json",
"contentType": "file"
},
{
"name": "as.js",
"path": "as.js",
"contentType": "file"
},
{
"name": "axe.js",
"path": "axe.js",
"contentType": "file"
},
{
"name": "bower.json",
"path": "bower.json",
"contentType": "file"
},
{
"name": "browser.js",
"path": "browser.js",
"contentType": "file"
},
{
"name": "gun.d.ts",
"path": "gun.d.ts",
"contentType": "file"
},
{
"name": "gun.js",
"path": "gun.js",
"contentType": "file"
},
{
"name": "gun.min.js",
"path": "gun.min.js",
"contentType": "file"
},
{
"name": "index.d.ts",
"path": "index.d.ts",
"contentType": "file"
},
{
"name": "index.js",
"path": "index.js",
"contentType": "file"
},
{
"name": "nts.js",
"path": "nts.js",
"contentType": "file"
},
{
"name": "package-lock.json",
"path": "package-lock.json",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
},
{
"name": "rad.js",
"path": "rad.js",
"contentType": "file"
},
{
"name": "sea.d.ts",
"path": "sea.d.ts",
"contentType": "file"
},
{
"name": "sea.js",
"path": "sea.js",
"contentType": "file"
},
{
"name": "tsconfig.json",
"path": "tsconfig.json",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 37,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/amark/gun/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/amark/gun.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone amark/gun",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/amark/gun/archive/refs/heads/master.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=22475123"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "2,499",
"overviewFiles": [
{
"displayName": "README.md",
"repoName": "gun",
"refName": "master",
"path": "README.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><p id=\"user-content-readme\" dir=\"auto\"><a href=\"https://gun.eco/\" rel=\"nofollow\"><img width=\"40%\" src=\"https://camo.githubusercontent.com/256e9bdb8a01ce9a7afa4e391e6a82f791a13ac44a7d716461e16294ba81489c/68747470733a2f2f636c6475702e636f6d2f5445793979476834356c2e737667\" data-canonical-src=\"https://cldup.com/TEy9yGh45l.svg\" style=\"max-width: 100%;\"></a><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/6ecce78fe7d1966a3a1a52c81be8cb42aaeb215a132f3859d1c56b46d251ee2b/68747470733a2f2f67756e2e65636f2f7365652f64656d6f2e676966\"><img width=\"50%\" align=\"right\" src=\"https://camo.githubusercontent.com/6ecce78fe7d1966a3a1a52c81be8cb42aaeb215a132f3859d1c56b46d251ee2b/68747470733a2f2f67756e2e65636f2f7365652f64656d6f2e676966\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/demo.gif\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\"><a href=\"https://www.jsdelivr.com/package/npm/gun\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/7a415fd34ca46eaed8a7634f1d04902d3a2ddaea5aaff65e1c3f3467d4262d37/68747470733a2f2f646174612e6a7364656c6976722e636f6d2f76312f7061636b6167652f6e706d2f67756e2f6261646765\" alt=\"\" data-canonical-src=\"https://data.jsdelivr.com/v1/package/npm/gun/badge\" style=\"max-width: 100%;\"></a>\n<a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://github.com/amark/gun/actions/workflows/ci.yml/badge.svg\"><img src=\"https://github.com/amark/gun/actions/workflows/ci.yml/badge.svg\" alt=\"Build\" style=\"max-width: 100%;\"></a>\n<a href=\"http://chat.gun.eco\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/48675338a6e7546508b9a0dc8fe5b1646ec758df750cf4ceadcb11c688ba3cee/68747470733a2f2f696d672e736869656c64732e696f2f6769747465722f726f6f6d2f616d61726b2f67756e2e6a732e737667\" alt=\"Gitter\" data-canonical-src=\"https://img.shields.io/gitter/room/amark/gun.js.svg\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\"><strong>GUN</strong> is an <a href=\"https://gun.eco/docs/Ecosystem\" rel=\"nofollow\">ecosystem</a> of <strong>tools</strong> that let you build <a href=\"https://www.nbcnews.com/tech/tech-news/these-technologists-think-internet-broken-so-they-re-building-another-n1030136\" rel=\"nofollow\">community run</a> and <a href=\"https://gun.eco/docs/Cartoon-Cryptography\" rel=\"nofollow\">encrypted applications</a> - like an Open Source Firebase or a Decentralized Dropbox.</p>\n<p dir=\"auto\">The <a href=\"https://news.ycombinator.com/item?id=17685682\" rel=\"nofollow\">Internet Archive</a> and <a href=\"https://github.com/amark/gun/wiki/awesome-gun\">100s of other apps</a> run GUN in-production. GUN was also part of <a href=\"https://blueskycommunity.net/\" rel=\"nofollow\">Twitter's bluesky</a> initiative!</p>\n<ul dir=\"auto\">\n<li>Multiplayer by default with realtime p2p state synchronization!</li>\n<li>Graph data lets you use key/value, tables, documents, videos, &amp; more!</li>\n<li>Local-first, offline, and decentralized with end-to-end encryption.</li>\n</ul>\n<p dir=\"auto\">Decentralized alternatives to <a href=\"https://www.zdnet.com/article/era-hatches-meething-an-open-source-browser-based-video-conferencing-system/\" rel=\"nofollow\">Zoom</a>, <a href=\"https://notabug.io/t/whatever/comments/36588a16b9008da4e3f15663c2225e949eca4a15/gpu-bot-test\" rel=\"nofollow\">Reddit</a>, <a href=\"https://iris.to/\" rel=\"nofollow\">Instagram</a>, <a href=\"https://iris.to/\" rel=\"nofollow\">Slack</a>, <a href=\"https://d.tube/\" rel=\"nofollow\">YouTube</a>, <a href=\"https://twitter.com/marknadal/status/1422717427427647489\" rel=\"nofollow\">Stripe</a>, <a href=\"https://news.ycombinator.com/item?id=17685682\" rel=\"nofollow\">Wikipedia</a>, Facebook <a href=\"https://twitter.com/marknadal/status/1424476179189305347\" rel=\"nofollow\">Horizon</a> and more have already pushed terabytes of daily P2P traffic on GUN. We are a <a href=\"http://chat.gun.eco/\" rel=\"nofollow\">friendly community</a> creating a <a href=\"https://youtu.be/1HJdrBk3BlE\" rel=\"nofollow\">free fun future for freedom</a>:</p>\n<a href=\"https://youtu.be/s_m16-w6bBI\" rel=\"nofollow\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/39b0112e1eacbf2d6ec3e79cccc94d7bc407c4847ccdfbd6422ee2c3aa879b50/68747470733a2f2f67756e2e65636f2f7365652f336476722e676966\" title=\"3D VR\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/3dvr.gif\" style=\"max-width: 100%;\"></a><a href=\"https://github.com/cstefanache/cstefanache.github.io/blob/06697003449e4fc531fd32ee068bab532976f47b/_posts/2016-08-02-gun-db-artificial-knowledge-sharing.md\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/47dbc9acb478c323cf281aad17a2c13bdeb3a6d57c32a36ebf0bc49b5462710a/68747470733a2f2f67756e2e65636f2f7365652f61696d6c2e676966\" title=\"AI/ML\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/aiml.gif\" style=\"max-width: 100%;\"></a><a href=\"http://gps.gunDB.io/\" rel=\"nofollow\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/76203758c98fac2d14fbf5cf4a26caeb0adb7ad47d88bb97a385feade9f73336/68747470733a2f2f67756e2e65636f2f7365652f6770732e676966\" title=\"GPS\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/gps.gif\" style=\"max-width: 100%;\"></a><a href=\"https://github.com/lmangani/gun-scape#gun-scape\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/6d86d4406ea2bfc9ff314ba73fd321d64fb07bba30c7ce55403bbe2bdd766b99/68747470733a2f2f67756e2e65636f2f7365652f6461746176697a2e676966\" title=\"Data Viz\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/dataviz.gif\" style=\"max-width: 100%;\"></a><a href=\"https://github.com/amark/gun/wiki/Auth\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/343f07e23bf4fe84c9c64a48de4c9531e4e70d0217cc2eb232fb22285e4705eb/68747470733a2f2f67756e2e65636f2f7365652f7032702e676966\" title=\"P2P\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/p2p.gif\" style=\"max-width: 100%;\"></a><a href=\"https://github.com/Stefdv/gun-ui-lcd#okay-what-about-gundb-\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/f013202087285f9476487f111dccbe23702e1bccc745f880ca8f508ae0aa2ad6/68747470733a2f2f67756e2e65636f2f7365652f696f742e676966\" title=\"IoT\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/iot.gif\" style=\"max-width: 100%;\"></a><a href=\"http://chat.gun.eco\" rel=\"nofollow\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/66889993dbfe40733d7a271310c3aaef7e531ecc250e07a0169d228f02ff0e16/68747470733a2f2f67756e2e65636f2f7365652f76722d776f726c642e676966\" title=\"VR World\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/vr-world.gif\" style=\"max-width: 100%;\"></a><a href=\"https://youtu.be/1ASrmQ-CwX4\" rel=\"nofollow\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/9af5be7f1c952a14b72a4952cdc9393144e447658011b03d916947f64cb5c173/68747470733a2f2f67756e2e65636f2f7365652f61722e676966\" title=\"AR\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/ar.gif\" style=\"max-width: 100%;\"></a><a href=\"https://meething.space/\" rel=\"nofollow\"><img width=\"31%\" src=\"https://camo.githubusercontent.com/8ffe2b24e6a34bc67849874331d2afd161222770b7586229b45d06f31a28459b/68747470733a2f2f67756e2e65636f2f7365652f766964656f2d636f6e662e676966\" title=\"Video Confernece\" data-animated-image=\"\" data-canonical-src=\"https://gun.eco/see/video-conf.gif\" style=\"max-width: 100%;\"></a><markdown-accessiblity-table><table>\n<tbody><tr>\n\n\n\n</tr>\n<tr>\n\n\n\n</tr>\n<tr>\n\n\n\n</tr>\n</tbody></table></markdown-accessiblity-table>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Quickstart</h2><a id=\"user-content-quickstart\" class=\"anchor\" aria-label=\"Permalink: Quickstart\" href=\"#quickstart\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">GUN is <em>super easy</em> to get started with:</p>\n<ul dir=\"auto\">\n<li>Try the <a href=\"https://gun.eco/docs/Todo-Dapp\" rel=\"nofollow\">interactive tutorial</a> in the browser (<strong>5min</strong> ~ average developer).</li>\n<li>Or <code>npm install gun</code> and run the examples with <code>cd node_modules/gun &amp;&amp; npm start</code> (<strong>5min</strong> ~ average developer).</li>\n</ul>\n<blockquote>\n<p dir=\"auto\"><strong>Note:</strong> If you don't have <a href=\"http://nodejs.org/\" rel=\"nofollow\">node</a> or <a href=\"https://www.npmjs.com/\" rel=\"nofollow\">npm</a>, read <a href=\"https://github.com/amark/gun/blob/master/examples/install.sh\">this</a> first.\nIf the <code>npm</code> command line didn't work, you may need to <code>mkdir node_modules</code> first or use <code>sudo</code>.</p>\n</blockquote>\n<ul dir=\"auto\">\n<li>An online demo of the examples are available here: <a href=\"http://try.axe.eco/\" rel=\"nofollow\">http://try.axe.eco/</a></li>\n<li>Or write a quick app: (<a href=\"https://jsbin.com/kadobamevo/edit?js,console\" rel=\"nofollow\">try now in a playground</a>)</li>\n</ul>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;script src=&quot;https://cdn.jsdelivr.net/npm/gun/gun.js&quot;&gt;&lt;/script&gt;\n&lt;script&gt;\n// import GUN from 'gun'; // in ESM\n// GUN = require('gun'); // in NodeJS\n// GUN = require('gun/gun'); // in React\ngun = GUN();\n\ngun.get('mark').put({\n name: &quot;Mark&quot;,\n email: &quot;[email protected]&quot;,\n});\n\ngun.get('mark').on((data, key) =&gt; {\n console.log(&quot;realtime updates:&quot;, data);\n});\n\nsetInterval(() =&gt; { gun.get('mark').get('live').put(Math.random()) }, 9);\n&lt;/script&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">script</span> <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.jsdelivr.net/npm/gun/gun.js</span>\"<span class=\"pl-kos\">&gt;</span><span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">script</span><span class=\"pl-kos\">&gt;</span>\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">script</span><span class=\"pl-kos\">&gt;</span>\n<span class=\"pl-c\">// import GUN from 'gun'; // in ESM</span>\n<span class=\"pl-c\">// GUN = require('gun'); // in NodeJS</span>\n<span class=\"pl-c\">// GUN = require('gun/gun'); // in React</span>\n<span class=\"pl-s1\">gun</span> <span class=\"pl-c1\">=</span> <span class=\"pl-c1\">GUN</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">put</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">name</span>: <span class=\"pl-s\">\"Mark\"</span><span class=\"pl-kos\">,</span>\n <span class=\"pl-c1\">email</span>: <span class=\"pl-s\">\"[email protected]\"</span><span class=\"pl-kos\">,</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">key</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"realtime updates:\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-en\">setInterval</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-c1\">=&gt;</span> <span class=\"pl-kos\">{</span> <span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'live'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">put</span><span class=\"pl-kos\">(</span><span class=\"pl-v\">Math</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">random</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">}</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">9</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">&lt;/</span><span class=\"pl-ent\">script</span><span class=\"pl-kos\">&gt;</span></pre></div>\n<ul dir=\"auto\">\n<li>Or try something <strong>mind blowing</strong>, like saving circular references to a table of documents! (<a href=\"http://jsbin.com/wefozepume/edit?js,console\" rel=\"nofollow\">play</a>)</li>\n</ul>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"cat = {name: &quot;Fluffy&quot;, species: &quot;kitty&quot;};\nmark = {boss: cat};\ncat.slave = mark;\n\n// partial updates merge with existing data!\ngun.get('mark').put(mark);\n\n// access the data as if it is a document.\ngun.get('mark').get('boss').get('name').once(function(data, key){\n // `once` grabs the data once, no subscriptions.\n console.log(&quot;Mark's boss is&quot;, data);\n});\n\n// traverse a graph of circular references!\ngun.get('mark').get('boss').get('slave').once(function(data, key){\n console.log(&quot;Mark is the cat's slave!&quot;, data);\n});\n\n// add both of them to a table!\ngun.get('list').set(gun.get('mark').get('boss'));\ngun.get('list').set(gun.get('mark'));\n\n// grab each item once from the table, continuously:\ngun.get('list').map().once(function(data, key){\n console.log(&quot;Item:&quot;, data);\n});\n\n// live update the table!\ngun.get('list').set({type: &quot;cucumber&quot;, goal: &quot;jumping cat&quot;});\"><pre><span class=\"pl-s1\">cat</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">{</span><span class=\"pl-c1\">name</span>: <span class=\"pl-s\">\"Fluffy\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">species</span>: <span class=\"pl-s\">\"kitty\"</span><span class=\"pl-kos\">}</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-s1\">mark</span> <span class=\"pl-c1\">=</span> <span class=\"pl-kos\">{</span><span class=\"pl-c1\">boss</span>: <span class=\"pl-s1\">cat</span><span class=\"pl-kos\">}</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-s1\">cat</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">slave</span> <span class=\"pl-c1\">=</span> <span class=\"pl-s1\">mark</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// partial updates merge with existing data!</span>\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">put</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">mark</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// access the data as if it is a document.</span>\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'boss'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'name'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">once</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">key</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">{</span>\n <span class=\"pl-c\">// `once` grabs the data once, no subscriptions.</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"Mark's boss is\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// traverse a graph of circular references!</span>\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'boss'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'slave'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">once</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">key</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"Mark is the cat's slave!\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// add both of them to a table!</span>\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'list'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">set</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'boss'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'list'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">set</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'mark'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// grab each item once from the table, continuously:</span>\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'list'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">map</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">once</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">data</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">key</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">{</span>\n <span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"Item:\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-s1\">data</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">// live update the table!</span>\n<span class=\"pl-s1\">gun</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">get</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'list'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">set</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">{</span><span class=\"pl-c1\">type</span>: <span class=\"pl-s\">\"cucumber\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-c1\">goal</span>: <span class=\"pl-s\">\"jumping cat\"</span><span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Want to keep building more? <strong>Jump to <a href=\"#documentation\">THE DOCUMENTATION</a>!</strong></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">About</h1><a id=\"user-content-about\" class=\"anchor\" aria-label=\"Permalink: About\" href=\"#about\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">First &amp; foremost, GUN is <strong>a community of the nicest and most helpful people</strong> out there. So <a href=\"http://chat.gun.eco\" rel=\"nofollow\">I want to invite you</a> to come tell us about what <strong>you</strong> are working on &amp; wanting to build (new or old school alike! Just be nice as well.) and ask us your questions directly. :)</p>\n<p align=\"center\" dir=\"auto\"><a href=\"https://www.youtube.com/watch?v=oTQXzhm8w_8\" rel=\"nofollow\"><img width=\"250\" src=\"https://camo.githubusercontent.com/00222eb00b568e9d80365f861e158047169e719dfa139a2306155b277c34cda6/68747470733a2f2f696d672e796f75747562652e636f6d2f76692f6f5451587a686d38775f382f302e6a7067\" data-canonical-src=\"https://img.youtube.com/vi/oTQXzhm8w_8/0.jpg\" style=\"max-width: 100%;\"><br>Watch the 100 second intro!</a></p>\n<p dir=\"auto\">The GUN ecosystem stack is a collection of independent and modular tools covering everything from <a href=\"https://crdt.tech/\" rel=\"nofollow\">CRDT</a> <a href=\"https://gun.eco/distributed/matters.html\" rel=\"nofollow\">conflict resolution</a>, <a href=\"https://gun.eco/docs/Cartoon-Cryptography\" rel=\"nofollow\">cryptographic security</a> &amp; <a href=\"https://gun.eco/docs/SEA\" rel=\"nofollow\">encryption</a>, <a href=\"https://gun.eco/docs/RAD\" rel=\"nofollow\">radix storage serialization</a>, <a href=\"https://gun.eco/docs/DAM\" rel=\"nofollow\">mesh networking</a> &amp; <a href=\"https://gun.eco/docs/Routing\" rel=\"nofollow\">routing algorithms</a>, to distributed systems <a href=\"https://github.com/gundb/panic-server\">correctness &amp; load testing</a>, CPU scheduled <a href=\"https://github.com/amark/gun/blob/master/lib/yson.js\">JSON parser</a> to prevent UI lag, and more!</p>\n<div dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/0e326a85fc19d48dbbec666adf67fe7325f00d9ef58b79e26ec9204a617e3692/68747470733a2f2f67756e2e65636f2f7365652f737461636b2e706e67\"><img width=\"48%\" src=\"https://camo.githubusercontent.com/0e326a85fc19d48dbbec666adf67fe7325f00d9ef58b79e26ec9204a617e3692/68747470733a2f2f67756e2e65636f2f7365652f737461636b2e706e67\" data-canonical-src=\"https://gun.eco/see/stack.png\" style=\"max-width: 100%;\"></a>\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/1848d3b71773ffc4250e5dc78c8ada023d29aad5022f14026e78c1b2fabea466/68747470733a2f2f67756e2e65636f2f7365652f6c61796572732e706e67\"><img width=\"48%\" align=\"right\" src=\"https://camo.githubusercontent.com/1848d3b71773ffc4250e5dc78c8ada023d29aad5022f14026e78c1b2fabea466/68747470733a2f2f67756e2e65636f2f7365652f6c61796572732e706e67\" data-canonical-src=\"https://gun.eco/see/layers.png\" style=\"max-width: 100%;\"></a></div>\n<p dir=\"auto\">On that note, let's get some official shout outs covered first:</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Support</h3><a id=\"user-content-support\" class=\"anchor\" aria-label=\"Permalink: Support\" href=\"#support\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p align=\"center\" dir=\"auto\">\nThanks to:\n</p><markdown-accessiblity-table><table>\n<tbody><tr>\n<td><a href=\"https://mozilla.org/builders\" rel=\"nofollow\"><img height=\"100\" src=\"https://user-images.githubusercontent.com/1423657/81992335-85346480-9643-11ea-8754-8275e98e06bc.png\" style=\"max-width: 100%;\"></a></td>\n<td><a href=\"http://unstoppabledomains.com/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/8a89117dbcc2cb0ddd6c949b5d0c995976c3300fd8ff1d32813f4e880715da4a/68747470733a2f2f67756e2e65636f2f696d672f756e73746f707061626c652e706e67\" data-canonical-src=\"https://gun.eco/img/unstoppable.png\" style=\"max-width: 100%;\"></a></td>\n<td><a href=\"https://mask.io/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/21bc75ce0a47d1c7e801c6da5fd28ec06bcf448bea4295347b2759b2ed3e8104/68747470733a2f2f64696d656e73696f6e6465762e6769746875622e696f2f4d61736b2d56492f6173736574732f4c6f676f2f4d422d2d4c6f676f2d2d436f6d62482d436972636c652d2d426c75652e737667\" width=\"250\" data-canonical-src=\"https://dimensiondev.github.io/Mask-VI/assets/Logo/MB--Logo--CombH-Circle--Blue.svg\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td>           <a href=\"https://www.ajar.org/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/513e06520ca2bc45ef558be2534eabaef74537b52d17afbfa7cb17682d045e43/68747470733a2f2f7777772e616a61722e6f72672f6c6f676f2e706e67\" height=\"120\" data-canonical-src=\"https://www.ajar.org/logo.png\" style=\"max-width: 100%;\"></a></td>\n<td><a href=\"https://wallie.io/\" rel=\"nofollow\"><img src=\"https://raw.githubusercontent.com/gundb/gun-site/master/img/wallie.png\" width=\"250\" style=\"max-width: 100%;\"></a></td>\n<td>  <a href=\"https://ghostdrive.com/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/8ea0b46856c65930a80e0286091df8705e23e2dcd9176881b3558ecd264fb692/68747470733a2f2f67756e2e65636f2f696d672f67686f737464726976652e706e67\" height=\"120\" data-canonical-src=\"https://gun.eco/img/ghostdrive.png\" style=\"max-width: 100%;\"></a></td>\n</tr>\n</tbody></table></markdown-accessiblity-table>\n<p dir=\"auto\"><a href=\"https://github.com/robertheessels\">Robert Heessels</a>,\n<a href=\"http://qxip.net/\" rel=\"nofollow\">Lorenzo Mangani</a>,\n<a href=\"https://nlnet.nl/\" rel=\"nofollow\">NLnet Foundation</a>,\n<a href=\"http://github.com/samliu\">Sam Liu</a>,\n<a href=\"http://github.com/ddombrow\">Daniel Dombrowsky</a>,\n<a href=\"http://github.com/vincentwoo\">Vincent Woo</a>,\n<a href=\"http://github.com/coolaj86\">AJ ONeal</a>,\n<a href=\"http://github.com/ottman\">Bill Ottman</a>,\n<a href=\"http://github.com/mikewlange\">Mike Lange</a>,\n<a href=\"http://github.com/ctrlplusb\">Sean Matheson</a>,\n<a href=\"http://github.com/alanmimms\">Alan Mimms</a>,\n<a href=\"https://github.com/dfreire\">Dário Freire</a>,\n<a href=\"http://github.com/velua\">John Williamson</a>,\n<a href=\"http://github.com/finwo\">Robin Bron</a>,\n<a href=\"http://github.com/ElieMakhoul\">Elie Makhoul</a>,\n<a href=\"http://github.com/mikestaub\">Mike Staub</a>,\n<a href=\"http://github.com/bmatusiak\">Bradley Matusiak</a>,\n<a href=\"https://github.com/sjuxax\">Jeff Cook</a>,\n<a href=\"https://github.com/nmauersberg\">Nico</a>,\n<a href=\"https://github.com/ajartille\">Aaron Artille</a>,\n<a href=\"https://github.com/timjrobinson\">Tim Robinson</a>,\n<a href=\"https://github.com/hibas123\">Fabian Stamm</a>,\n<a href=\"https://twitter.com/mikestaub\" rel=\"nofollow\">Mike Staub</a>,\n<a href=\"https://hunterowens.com/\" rel=\"nofollow\">Hunter Owens</a>,\n<a href=\"https://github.com/JacobMillner\">Jacob Millner</a>,\n<a href=\"https://github.com/b-lack\">Gerrit Balindt</a>,\n<a href=\"https://github.com/gabriellemon\">Gabriel Lemon</a>,\n<a href=\"https://github.com/murageyun\">Murage Martin</a>,\n<a href=\"https://github.com/octalmage\">Jason Stallings</a></p>\n<p dir=\"auto\"></p>\n<ul dir=\"auto\">\n<li>Join others in sponsoring code: <a href=\"https://www.patreon.com/gunDB\" rel=\"nofollow\">https://www.patreon.com/gunDB</a> !</li>\n<li>Ask questions: <a href=\"http://stackoverflow.com/questions/tagged/gun\" rel=\"nofollow\">http://stackoverflow.com/questions/tagged/gun</a> ?</li>\n<li>Found a bug? Report at: <a href=\"https://github.com/amark/gun/issues\">https://github.com/amark/gun/issues</a> ;</li>\n<li><strong>Need help</strong>? Chat with us: <a href=\"http://chat.gun.eco\" rel=\"nofollow\">http://chat.gun.eco</a> .</li>\n</ul>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">History</h3><a id=\"user-content-history\" class=\"anchor\" aria-label=\"Permalink: History\" href=\"#history\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://gun.eco\" rel=\"nofollow\">GUN</a> was created by <a href=\"https://twitter.com/marknadal\" rel=\"nofollow\">Mark Nadal</a> in 2014 after he had spent 4 years trying to get his collaborative web app to scale up with traditional databases.</p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/19e213d9a6675e5311e47cb393e48f8b7bf1a9e5e5d9c3ad393790b18ded54f5/68747470733a2f2f67756e2e65636f2f7365652f70726f626c656d2e706e67\"><img width=\"250px\" src=\"https://camo.githubusercontent.com/19e213d9a6675e5311e47cb393e48f8b7bf1a9e5e5d9c3ad393790b18ded54f5/68747470733a2f2f67756e2e65636f2f7365652f70726f626c656d2e706e67\" align=\"left\" title=\"pain point\" data-canonical-src=\"https://gun.eco/see/problem.png\" style=\"max-width: 100%;\"></a> After he realized <a href=\"https://gun.eco/distributed/matters.html\" rel=\"nofollow\">Master-Slave database architecture causes one big bottleneck</a>, he (as a complete newbie outsider) naively decided <strong>to question the status quo</strong> and shake things up with controversial, heretical, and contrarian experiments:</p>\n<p dir=\"auto\"><strong>The NoDB</strong> - no master, no servers, no \"single source of truth\", not built with a real programming language or real hardware, no DevOps, no locking, not <em>just</em> SQL or NoSQL but both (<strong>all</strong> - graphs, documents, tables, key/value).</p>\n<p dir=\"auto\">The goal was to build a P2P database that could survive living inside <strong>any</strong> browser, and could correctly sync data between <strong>any</strong> device after assuming <strong>any</strong> offline-first activity.</p>\n<p dir=\"auto\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/061acbb03582fae39fd5eb0b3a4914c1a057a05b9373fee1bef33b75b312e5e3/68747470733a2f2f67756e2e65636f2f7365652f636f6d706172652e706e67\"><img src=\"https://camo.githubusercontent.com/061acbb03582fae39fd5eb0b3a4914c1a057a05b9373fee1bef33b75b312e5e3/68747470733a2f2f67756e2e65636f2f7365652f636f6d706172652e706e67\" title=\"comparison table\" data-canonical-src=\"https://gun.eco/see/compare.png\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Technically, <strong>GUN is a graph synchronization protocol</strong> with a <em>lightweight embedded engine</em>, capable of doing <em><a href=\"https://gun.eco/docs/Performance\" rel=\"nofollow\">20M+ API ops/sec</a></em> in <strong>just ~9KB gzipped size</strong>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Documentation</h2><a id=\"user-content-documentation\" class=\"anchor\" aria-label=\"Permalink: Documentation\" href=\"#documentation\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<markdown-accessiblity-table><table>\n <tbody><tr>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/API\" rel=\"nofollow\">API reference</a></h3><a id=\"user-content-api-reference\" class=\"anchor\" aria-label=\"Permalink: API reference\" href=\"#api-reference\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/Todo-Dapp\" rel=\"nofollow\">Tutorials</a></h3><a id=\"user-content-tutorials\" class=\"anchor\" aria-label=\"Permalink: Tutorials\" href=\"#tutorials\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://github.com/amark/gun/tree/master/examples\">Examples</a></h3><a id=\"user-content-examples\" class=\"anchor\" aria-label=\"Permalink: Examples\" href=\"#examples\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n </tr>\n <tr>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://github.com/brysgo/graphql-gun\">GraphQL</a></h3><a id=\"user-content-graphql\" class=\"anchor\" aria-label=\"Permalink: GraphQL\" href=\"#graphql\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://github.com/PenguinMan98/electrontest\">Electron</a></h3><a id=\"user-content-electron\" class=\"anchor\" aria-label=\"Permalink: Electron\" href=\"#electron\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/React-Native\" rel=\"nofollow\">React &amp; Native</a></h3><a id=\"user-content-react--native\" class=\"anchor\" aria-label=\"Permalink: React &amp; Native\" href=\"#react--native\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n </tr>\n <tr>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://github.com/sjones6/vue-gun\">Vue</a></h3><a id=\"user-content-vue\" class=\"anchor\" aria-label=\"Permalink: Vue\" href=\"#vue\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/Svelte\" rel=\"nofollow\">Svelte</a></h3><a id=\"user-content-svelte\" class=\"anchor\" aria-label=\"Permalink: Svelte\" href=\"#svelte\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://github.com/Stefdv/gun-ui-lcd#syncing\">Webcomponents</a></h3><a id=\"user-content-webcomponents\" class=\"anchor\" aria-label=\"Permalink: Webcomponents\" href=\"#webcomponents\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n </tr>\n <tr>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/CAP-Theorem\" rel=\"nofollow\">CAP Theorem Tradeoffs</a></h3><a id=\"user-content-cap-theorem-tradeoffs\" class=\"anchor\" aria-label=\"Permalink: CAP Theorem Tradeoffs\" href=\"#cap-theorem-tradeoffs\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/distributed/matters.html\" rel=\"nofollow\">How Data Sync Works</a></h3><a id=\"user-content-how-data-sync-works\" class=\"anchor\" aria-label=\"Permalink: How Data Sync Works\" href=\"#how-data-sync-works\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/Porting-GUN\" rel=\"nofollow\">How GUN is Built</a></h3><a id=\"user-content-how-gun-is-built\" class=\"anchor\" aria-label=\"Permalink: How GUN is Built\" href=\"#how-gun-is-built\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n </tr>\n <tr>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/Auth\" rel=\"nofollow\">Crypto Auth</a></h3><a id=\"user-content-crypto-auth\" class=\"anchor\" aria-label=\"Permalink: Crypto Auth\" href=\"#crypto-auth\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://github.com/amark/gun/wiki/Awesome-GUN\">Modules</a></h3><a id=\"user-content-modules\" class=\"anchor\" aria-label=\"Permalink: Modules\" href=\"#modules\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n <td><div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://gun.eco/docs/Roadmap\" rel=\"nofollow\">Roadmap</a></h3><a id=\"user-content-roadmap\" class=\"anchor\" aria-label=\"Permalink: Roadmap\" href=\"#roadmap\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div></td>\n </tr>\n</tbody></table></markdown-accessiblity-table>\n<p dir=\"auto\">This would not be possible without <strong>community contributors</strong>, big shout out to:</p>\n<p dir=\"auto\"><strong><a href=\"https://github.com/ajmeyghani\">ajmeyghani</a> (<a href=\"https://medium.com/@ajmeyghani/gundb-a-graph-database-in-javascript-3860a08d873c\" rel=\"nofollow\">Learn GUN Basics with Diagrams</a>)</strong>; <strong><a href=\"https://github.com/anywhichway\">anywhichway</a> (<a href=\"https://github.com/anywhichway/gun-block\">Block Storage</a>)</strong>; <strong><a href=\"https://github.com/beebase\">beebase</a> (<a href=\"https://github.com/beebase/gun-vuex-quasar\">Quasar</a>)</strong>; <strong><a href=\"https://github.com/BrockAtkinson\">BrockAtkinson</a> (<a href=\"https://github.com/BrockAtkinson/brunch-gun\">brunch config</a>)</strong>; <strong><a href=\"https://github.com/brysgo\">Brysgo</a> (<a href=\"https://github.com/brysgo/graphql-gun\">GraphQL</a>)</strong>; <strong><a href=\"https://github.com/d3x0r\">d3x0r</a> (<a href=\"https://github.com/d3x0r/gun-db\">SQLite</a>)</strong>; <strong><a href=\"https://github.com/forrestjt\">forrestjt</a> (<a href=\"https://github.com/amark/gun/blob/master/lib/file.js\">file.js</a>)</strong>; <strong><a href=\"https://github.com/hillct\">hillct</a> (Docker)</strong>; <strong><a href=\"https://github.com/josepedrodias\">JosePedroDias</a> (<a href=\"http://acor.sl.pt:9966\" rel=\"nofollow\">graph visualizer</a>)</strong>; <strong><a href=\"https://github.com/JuniperChicago\">JuniperChicago</a> (<a href=\"https://github.com/JuniperChicago/cycle-gun\">cycle.js bindings</a>)</strong>; <strong><a href=\"https://github.com/jveres\">jveres</a> (<a href=\"https://github.com/jveres/todomvc\">todoMVC</a>)</strong>; <strong><a href=\"https://github.com/kristianmandrup\">kristianmandrup</a> (<a href=\"https://github.com/kristianmandrup/gun-edge\">edge</a>)</strong>; <strong><a href=\"https://github.com/Lightnet\">Lightnet</a></strong> (<a href=\"https://glitch.com/edit/#!/jsvuegunui?path=README.md:1:0\" rel=\"nofollow\">Awesome Vue User Examples</a> &amp; <a href=\"https://gdb-auth-vue-node.glitch.me/\" rel=\"nofollow\">User Kitchen Sink Playground</a>); <strong><a href=\"https://github.com/lmangani\">lmangani</a> (<a href=\"https://github.com/lmangani/gun-scape\">Cytoscape Visualizer</a>, <a href=\"https://github.com/lmangani/gun-cassandra\">Cassandra</a>, <a href=\"https://github.com/lmangani/fastify-gundb\">Fastify</a>, <a href=\"https://github.com/lmangani/polyGun-letsencrypt\">LetsEncrypt</a>)</strong>; <strong><a href=\"https://github.com/mhelander\">mhelander</a> (<a href=\"https://github.com/amark/gun/blob/master/sea.js\">SEA</a>)</strong>; <a href=\"https://github.com/omarzion\">omarzion</a> (<a href=\"https://github.com/omarzion/stickies\">Sticky Note App</a>); <a href=\"https://github.com/PsychoLlama\">PsychoLlama</a> (<a href=\"https://github.com/PsychoLlama/gun-level\">LevelDB</a>); <strong><a href=\"https://github.com/RangerMauve\">RangerMauve</a> (<a href=\"https://github.com/gundb/gun-schema\">schema</a>)</strong>; <strong><a href=\"https://github.com/swifty\">robertheessels</a> (<a href=\"https://github.com/swifty/gun-p2p-auth\">gun-p2p-auth</a>)</strong>; <strong><a href=\"https://github.com/rogowski\">rogowski</a> (AXE)</strong>; <a href=\"https://github.com/sbeleidy\">sbeleidy</a>; <strong><a href=\"https://github.com/sbiaudet\">sbiaudet</a> (<a href=\"https://github.com/sbiaudet/cs-gun\">C# Port</a>)</strong>; <strong><a href=\"https://github.com/ctrlplusb\">Sean Matheson</a> (<a href=\"https://github.com/ctrlplusb/gun-most\">Observable/RxJS/Most.js bindings</a>)</strong>; <strong><a href=\"https://github.com/Shadyzpop\">Shadyzpop</a> (<a href=\"https://github.com/amark/gun/tree/master/examples/react-native\">React Native example</a>)</strong>; <strong><a href=\"https://github.com/sjones6\">sjones6</a> (<a href=\"https://github.com/sjones6/gun-flint\">Flint</a>)</strong>; RIP <strong><a href=\"https://github.com/stefdv\">Stefdv</a> (Polymer/web components)</strong>; <strong><a href=\"https://github.com/zrrrzzt\">zrrrzzt</a> (<a href=\"https://gist.github.com/zrrrzzt/6f88dc3cedee4ee18588236756d2cfce\">JWT Auth</a>)</strong>; <strong><a href=\"https://github.com/xmonader\">xmonader</a> (<a href=\"https://github.com/xmonader/pygundb\">Python Port</a>)</strong>;</p>\n<p dir=\"auto\">I am missing many others, apologies, will be adding them soon! This list is infinitely old &amp; way out of date, if you want to be listed in it please make a PR! :)</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Testing</h2><a id=\"user-content-testing\" class=\"anchor\" aria-label=\"Permalink: Testing\" href=\"#testing\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">You will need to <code>npm install -g mocha</code> first. Then in the gun root folder run <code>npm test</code>. 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 <code>rm -rf *data*</code> command in the project directory.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Shims</h2><a id=\"user-content-shims\" class=\"anchor\" aria-label=\"Permalink: Shims\" href=\"#shims\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<blockquote>\n<p dir=\"auto\">These are only needed for NodeJS &amp; React Native, they shim the native Browser WebCrypto API.</p>\n</blockquote>\n<p dir=\"auto\">If you want to use <a href=\"https://gun.eco/docs/SEA\" rel=\"nofollow\">SEA</a> for <code>User</code> auth and security, you will need to install:</p>\n<p dir=\"auto\"><code>npm install @peculiar/webcrypto --save</code></p>\n<p dir=\"auto\">Please see <a href=\"https://gun.eco/docs/React-Native\" rel=\"nofollow\">our React Native docs</a> for installation instructions!</p>\n<p dir=\"auto\">Then you can require <a href=\"https://gun.eco/docs/SEA\" rel=\"nofollow\">SEA</a> without an error:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"GUN = require('gun/gun');\nSEA = require('gun/sea');\"><pre><span class=\"pl-c1\">GUN</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'gun/gun'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-c1\">SEA</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'gun/sea'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Deploy</h2><a id=\"user-content-deploy\" class=\"anchor\" aria-label=\"Permalink: Deploy\" href=\"#deploy\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<blockquote>\n<p dir=\"auto\">Note: The default examples that get auto-deployed on <code>npm start</code> CDN-ify all GUN files, modules, &amp; storage.</p>\n</blockquote>\n<blockquote>\n<p dir=\"auto\">Note: Moving forward, AXE will start to automatically cluster your peer into a shared DHT. You may want to disable this to run an isolated network.</p>\n</blockquote>\n<blockquote>\n<p dir=\"auto\">Note: When deploying a web application using GUN on a cloud provider, you may have to set <code>CI=false</code> in your <code>.env</code>. This prevents GUN-specific warnings from being treated as errors when deploying your app. You may also resolve this by modifying your webpack config to not try to build the GUN dependencies.</p>\n</blockquote>\n<p dir=\"auto\">To quickly spin up a GUN relay peer for your development team, utilize <a href=\"http://heroku.com\" rel=\"nofollow\">Heroku</a>, <a href=\"http://docker.com\" rel=\"nofollow\">Docker</a>, or any others listed below. Or some variant thereof <a href=\"http://dokku.viewdocs.io/dokku/\" rel=\"nofollow\">Dokku</a>, K8s, etc. ! Or use all of them so your relays are decentralized too!</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Linux</h3><a id=\"user-content-linux\" class=\"anchor\" aria-label=\"Permalink: Linux\" href=\"#linux\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><code>SSH</code> into the home directory of a clean OS install with <code>sudo</code> ability. Set any environment variables you need (see below), then do:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"curl -o- https://raw.githubusercontent.com/amark/gun/master/examples/install.sh | bash\"><pre>curl -o- https://raw.githubusercontent.com/amark/gun/master/examples/install.sh <span class=\"pl-k\">|</span> bash</pre></div>\n<blockquote>\n<p dir=\"auto\">Read <a href=\"https://github.com/amark/gun/blob/master/examples/install.sh\">install.sh</a> first!\nIf <code>curl</code> is not found, <em>copy&amp;paste</em> the contents of install.sh into your ssh.</p>\n</blockquote>\n<p dir=\"auto\">You can now safely <code>CTRL+A+D</code> to escape without stopping the peer. To stop everything <code>killall screen</code> or <code>killall node</code>.</p>\n<p dir=\"auto\">Environment variables may need to be set like <code>export HTTPS_CERT=~/cert.pem HTTPS_KEY=~/key.pem PORT=443</code>. You can also look at a sample <a href=\"https://gun.eco/docs/nginx\" rel=\"nofollow\">nginx</a> config. For production deployments, you probably will want to use something like <code>pm2</code> or better to keep the peer alive after machine reboots.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://www.trydome.io/\" rel=\"nofollow\">Dome</a></h3><a id=\"user-content-dome\" class=\"anchor\" aria-label=\"Permalink: Dome\" href=\"#dome\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://app.trydome.io/signup?package=gun\" rel=\"nofollow\">Deploy GUN in one-click</a> with <a href=\"https://trydome.io\" rel=\"nofollow\">Dome</a> and receive a free trial:</p>\n<p dir=\"auto\"><a href=\"https://app.trydome.io/signup?package=gun\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/d74a5c592d65ae0e2a8dffb814754d4c7ef8be62bf66ec6a14d3f5c6936e9d42/68747470733a2f2f747279646f6d652e696f2f627574746f6e2e737667\" alt=\"Deploy to Dome\" data-canonical-src=\"https://trydome.io/button.svg\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://www.heroku.com/\" rel=\"nofollow\">Heroku</a></h3><a id=\"user-content-heroku\" class=\"anchor\" aria-label=\"Permalink: Heroku\" href=\"#heroku\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://heroku.com/deploy?template=https://github.com/amark/gun\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/df5706ea91f4c49deb42ca31a753d025e2078d24e2490cf88ffc7ed84a38e48e/68747470733a2f2f7777772e6865726f6b7563646e2e636f6d2f6465706c6f792f627574746f6e2e737667\" alt=\"Deploy\" data-canonical-src=\"https://www.herokucdn.com/deploy/button.svg\" style=\"max-width: 100%;\"></a></p>\n<blockquote>\n<p dir=\"auto\">Heroku deletes your data every 15 minutes, one way to fix this is by adding <a href=\"https://gun.eco/docs/Using-Amazon-S3-for-Storage\" rel=\"nofollow\">cheap storage</a>.</p>\n</blockquote>\n<p dir=\"auto\">Or:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"git clone https://github.com/amark/gun.git\ncd gun\nheroku create\ngit push -f heroku HEAD:master\"><pre>git clone https://github.com/amark/gun.git\n<span class=\"pl-c1\">cd</span> gun\nheroku create\ngit push -f heroku HEAD:master</pre></div>\n<p dir=\"auto\">Then visit the URL in the output of the 'heroku create' step, in a browser. Make sure to set any environment config vars in the settings tab.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://www.zeet.co/\" rel=\"nofollow\">Zeet.co</a></h3><a id=\"user-content-zeetco\" class=\"anchor\" aria-label=\"Permalink: Zeet.co\" href=\"#zeetco\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://deploy.zeet.co/?url=https://github.com/amark/gun\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/b4431f16d2200ee59136fdbac80a54d192a6f1e06a732a26bbfc8c8175af4986/68747470733a2f2f6465706c6f792e7a6565742e636f2f67756e2e737667\" alt=\"Deploy\" data-canonical-src=\"https://deploy.zeet.co/gun.svg\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Then visit the URL in the output of the 'now --npm' step, in your browser.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"><a href=\"https://www.docker.com/\" rel=\"nofollow\">Docker</a></h3><a id=\"user-content-docker\" class=\"anchor\" aria-label=\"Permalink: Docker\" href=\"#docker\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<blockquote>\n<p dir=\"auto\">Warning: Docker image is community contributed and may be old with missing security updates, please check version numbers to compare.</p>\n</blockquote>\n<p dir=\"auto\"><a href=\"https://hub.docker.com/r/gundb/gun/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/302fb3d4b0b621874bc62bb1806940b1a6aa05731d7d0e9cc30ce2f3e482350e/68747470733a2f2f696d672e736869656c64732e696f2f646f636b65722f6175746f6d617465642f67756e64622f67756e2e737667\" alt=\"Docker Automated build\" data-canonical-src=\"https://img.shields.io/docker/automated/gundb/gun.svg\" style=\"max-width: 100%;\"></a> <a href=\"https://microbadger.com/images/gundb/gun\" title=\"Get your own image badge on microbadger.com\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/13fc726915065022b864ca4f1229430b435da8266640e8f679c711b32c58efbc/68747470733a2f2f696d616765732e6d6963726f6261646765722e636f6d2f6261646765732f696d6167652f67756e64622f67756e2e737667\" alt=\"\" data-canonical-src=\"https://images.microbadger.com/badges/image/gundb/gun.svg\" style=\"max-width: 100%;\"></a> <a href=\"https://hub.docker.com/r/gundb/gun/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/f3674480dd7dee57043ad7e1bdb1d5bfc108f70d14251483ec85f2142707a425/68747470733a2f2f696d672e736869656c64732e696f2f646f636b65722f70756c6c732f67756e64622f67756e2e737667\" alt=\"Docker Pulls\" data-canonical-src=\"https://img.shields.io/docker/pulls/gundb/gun.svg\" style=\"max-width: 100%;\"></a> <a href=\"https://hub.docker.com/r/gundb/gun/\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/c7c474a157b124132cd44209ad6b894a50b366c7edc6a54c72467ca66832374d/68747470733a2f2f696d672e736869656c64732e696f2f646f636b65722f73746172732f67756e64622f67756e2e737667\" alt=\"Docker Stars\" data-canonical-src=\"https://img.shields.io/docker/stars/gundb/gun.svg\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Pull from the <a href=\"https://hub.docker.com/r/gundb/gun/\" rel=\"nofollow\">Docker Hub</a> <a href=\"https://microbadger.com/images/gundb/gun\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/49663cfdf2856f0b80bc6c5a719bb083034358c82857f20e7ad4da4fcd24f9d9/68747470733a2f2f696d616765732e6d6963726f6261646765722e636f6d2f6261646765732f636f6d6d69742f67756e64622f67756e2e737667\" alt=\"\" data-canonical-src=\"https://images.microbadger.com/badges/commit/gundb/gun.svg\" style=\"max-width: 100%;\"></a>. Or:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"docker run -p 8765:8765 gundb/gun\"><pre>docker run -p 8765:8765 gundb/gun</pre></div>\n<p dir=\"auto\">Or build the <a href=\"https://docs.docker.com/engine/installation/\" rel=\"nofollow\">Docker</a> image locally:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"git clone https://github.com/amark/gun.git\ncd gun\ndocker build -t myrepo/gundb:v1 .\ndocker run -p 8765:8765 myrepo/gundb:v1\"><pre>git clone https://github.com/amark/gun.git\n<span class=\"pl-c1\">cd</span> gun\ndocker build -t myrepo/gundb:v1 <span class=\"pl-c1\">.</span>\ndocker run -p 8765:8765 myrepo/gundb:v1</pre></div>\n<p dir=\"auto\">Or, if you prefer your Docker image with metadata labels (Linux/Mac only):</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm run docker\ndocker run -p 8765:8765 username/gun:git\"><pre>npm run docker\ndocker run -p 8765:8765 username/gun:git</pre></div>\n<p dir=\"auto\">Then visit <a href=\"http://localhost:8765\" rel=\"nofollow\">http://localhost:8765</a> in your browser.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">License</h2><a id=\"user-content-license\" class=\"anchor\" aria-label=\"Permalink: License\" href=\"#license\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Designed with ♥ by Mark Nadal, the GUN team, and many amazing contributors.</p>\n<p dir=\"auto\">Openly licensed under <a href=\"https://github.com/amark/gun/blob/master/LICENSE.md\">Zlib / MIT / Apache 2.0</a>.</p>\n<p dir=\"auto\"><a href=\"https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Famark%2Fgun?ref=badge_large\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/dbf7b25b1945dbf6f79c046c67ca347597592a6a30f0b77ce9f01b894c4d9676/68747470733a2f2f6170702e666f7373612e696f2f6170692f70726f6a656374732f67697425324268747470732533412532462532466769746875622e636f6d253246616d61726b25324667756e2e7376673f73697a653d6c61726765\" alt=\"FOSSA Status\" data-canonical-src=\"https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Famark%2Fgun.svg?size=large\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\"><a href=\"https://www.youtube.com/channel/UCQAtpf-zi9Pp4__2nToOM8g\" rel=\"nofollow\">YouTube</a> . <a href=\"https://twitter.com/marknadal\" rel=\"nofollow\">Twitter</a></p>\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 2,
"text": "Quickstart",
"anchor": "quickstart",
"htmlText": "Quickstart"
},
{
"level": 1,
"text": "About",
"anchor": "about",
"htmlText": "About"
},
{
"level": 3,
"text": "Support",
"anchor": "support",
"htmlText": "Support"
},
{
"level": 3,
"text": "History",
"anchor": "history",
"htmlText": "History"
},
{
"level": 2,
"text": "Documentation",
"anchor": "documentation",
"htmlText": "Documentation"
},
{
"level": 3,
"text": "API reference",
"anchor": "api-reference",
"htmlText": "API reference"
},
{
"level": 3,
"text": "Tutorials",
"anchor": "tutorials",
"htmlText": "Tutorials"
},
{
"level": 3,
"text": "Examples",
"anchor": "examples",
"htmlText": "Examples"
},
{
"level": 3,
"text": "GraphQL",
"anchor": "graphql",
"htmlText": "GraphQL"
},
{
"level": 3,
"text": "Electron",
"anchor": "electron",
"htmlText": "Electron"
},
{
"level": 3,
"text": "React & Native",
"anchor": "react--native",
"htmlText": "React &amp; Native"
},
{
"level": 3,
"text": "Vue",
"anchor": "vue",
"htmlText": "Vue"
},
{
"level": 3,
"text": "Svelte",
"anchor": "svelte",
"htmlText": "Svelte"
},
{
"level": 3,
"text": "Webcomponents",
"anchor": "webcomponents",
"htmlText": "Webcomponents"
},
{
"level": 3,
"text": "CAP Theorem Tradeoffs",
"anchor": "cap-theorem-tradeoffs",
"htmlText": "CAP Theorem Tradeoffs"
},
{
"level": 3,
"text": "How Data Sync Works",
"anchor": "how-data-sync-works",
"htmlText": "How Data Sync Works"
},
{
"level": 3,
"text": "How GUN is Built",
"anchor": "how-gun-is-built",
"htmlText": "How GUN is Built"
},
{
"level": 3,
"text": "Crypto Auth",
"anchor": "crypto-auth",
"htmlText": "Crypto Auth"
},
{
"level": 3,
"text": "Modules",
"anchor": "modules",
"htmlText": "Modules"
},
{
"level": 3,
"text": "Roadmap",
"anchor": "roadmap",
"htmlText": "Roadmap"
},
{
"level": 2,
"text": "Testing",
"anchor": "testing",
"htmlText": "Testing"
},
{
"level": 2,
"text": "Shims",
"anchor": "shims",
"htmlText": "Shims"
},
{
"level": 2,
"text": "Deploy",
"anchor": "deploy",
"htmlText": "Deploy"
},
{
"level": 3,
"text": "Linux",
"anchor": "linux",
"htmlText": "Linux"
},
{
"level": 3,
"text": "Dome",
"anchor": "dome",
"htmlText": "Dome"
},
{
"level": 3,
"text": "Heroku",
"anchor": "heroku",
"htmlText": "Heroku"
},
{
"level": 3,
"text": "Zeet.co",
"anchor": "zeetco",
"htmlText": "Zeet.co"
},
{
"level": 3,
"text": "Docker",
"anchor": "docker",
"htmlText": "Docker"
},
{
"level": 2,
"text": "License",
"anchor": "license",
"htmlText": "License"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Famark%2Fgun"
}
},
{
"displayName": "LICENSE.md",
"repoName": "gun",
"refName": "master",
"path": "LICENSE.md",
"preferredFileType": "license",
"tabName": "License",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Famark%2Fgun"
}
},
{
"displayName": "SECURITY.md",
"repoName": "gun",
"refName": "master",
"path": "SECURITY.md",
"preferredFileType": "security",
"tabName": "Security",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Famark%2Fgun"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-3a63a487027b.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Sat, 27 Jul 2024 13:29:10 GMT",
"etag": "2479d2e7cc1474d85c7391bc7f2a1d61",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Sun, 27 Jul 2025 13:29:10 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "9F18:1EF84E:59F301:75D660:66A4F626",
"x-xss-protection": "0"
}