Gundb Workshop Hackingedu Trainingday
Gunadarma Workshop Security Pdf Ever wish you could just write your app all from the frontend? yet still have all your data sync in realtime and save, without worrying about a backend? mark. 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.
Practical Ethical Hacking Workshop University Of Dubai This is simple example of performing user authentication using gundb and its sea (security, encryption, authentication) module . This article will go over how it is easy to create interconnected data with gun's graph features, combining key value, relational, and document based data together. it will also be a great introductory guide on how to use pretty much every one of gun's api methods. note: this article requires gun v0.5.x or above. Join hackingedu and help us invent the future! hackingedu is a hackathon run by students, for students, with the intent of disrupting the classroom and the contemporary education system. Hackingedu is proud to announce its official training day, a pre hackathon event full of workshops and hands on training hosted by our participating sponsors.
Practical Ethical Hacking Workshop University Of Dubai Join hackingedu and help us invent the future! hackingedu is a hackathon run by students, for students, with the intent of disrupting the classroom and the contemporary education system. Hackingedu is proud to announce its official training day, a pre hackathon event full of workshops and hands on training hosted by our participating sponsors. Gundb is a decentralized (peer to peer) distributed graph database with support for multiple users, access control and persistence. it runs in the browser or on node.js, works fine when offline and synchronizes with other peers using a "last write wins" strategy when online. Gun is a small, distributed data sync and storage solution that runs everywhere javascript does. gun lets you focus on the data you need to store, retrieve and share without worrying about merge conflicts, network partitions, or synchronizing offline edits. Const gundb1 = object.create (gundb); const gundb2 = object.create (gundb); const gundb3 = object.create (gundb); gundb1.init ( {port: 8080}); gundb2.init ( {port: 8081, peers: [' localhost:8080 gun']}); gundb3.init ( {port: 8082, peers: [' localhost:8080 gun']}); create and authorize a user per gundb. Jump right into the gun playground and start testing whatever functions you want. quick note: all active development is happening on 0.5 branch, which has the upcoming 30m ops sec performance improvements! the above examples are included in this repo.
Comments are closed.