Meteor
Guide
How to do logging via winston and loggly
# Setup logging in server/config.js
@LOGGER = Meteor.npmRequire 'winston'
Meteor.npmRequire 'winston-loggly'
LOGGER.add(LOGGER.transports.Loggly, {
token: "YOUR-TOKEN",
subdomain: "YOUR-DOMAIN",
tags: ["YOUR-TAG"],
json:true,
handleExceptions: true, # handle exception in logger
humanReadableUnhandledException: true
});
LOGGER.existOnError = false # don't exit on error
LOGGER.info 'logger started'How to send email using SendGrid
DDP
Performance
Client Side
Store data in template instance using ReactiveVar
Packages
fs
Last updated