mirror of
https://github.com/amark/gun.git
synced 2025-06-08 15:16:42 +00:00
5 lines
254 B
JavaScript
5 lines
254 B
JavaScript
var gun = require('gun')({
|
|
s3: (process.env.NODE_ENV === 'production')? null : require('../../test/shotgun') // replace this with your own keys!
|
|
});
|
|
|
|
gun.load('kitten/hobbes').path('servant.cat.servant.name').get(function(name){ console.log(name) }) |