UNPKG

gun-flint

Version:

Micro-framework for building Gun adapters

9 lines (5 loc) 295 B
var Gun = require('../../index'); var location = {host:"localhost"}; var gun = Gun( { file: 'read.json', peers: ['http://' + location.host + ':8080/gun'] }); gun.get( 'data' ).path('stuff').map(function(val,field){ console.log( field, "=", val ); } ); console.log( "done... wait forever?" );