mirror of
https://github.com/amark/gun.git
synced 2025-05-19 13:26:48 +00:00

If you use gun a bunch, you've probably noticed the messages like "Hello wonderful person :)" and "WARNING: This file.js module...". This PR allows you to silence them. Use `Gun.log.off = true` to bring peace back to your workflow. > **Note:** great when used with file watchers like nodemon."
14 lines
348 B
JavaScript
14 lines
348 B
JavaScript
;(function(){
|
|
var Gun = require('../gun');
|
|
//require('./s3');
|
|
require('./wsp/server');
|
|
require('./file');
|
|
Gun.log(
|
|
'Hello wonderful person! :)\n' +
|
|
'I\'m mark@gunDB.io, message me for help or with hatemail. ' +
|
|
'I want to hear from you! <3'
|
|
);
|
|
Gun.log('TODO: MARK! UPDATE S3 DRIVER BEFORE PUBLISHING!');
|
|
module.exports = Gun;
|
|
}());
|