A SerilogJS sink that POSTs events to Seq Server.
Designed to work with Seq Logging Server and SerilogJS
bower install serilogjs-seq-sink
var log = serilog.configuration()
.writeTo(serilog.sink.seq({url:"http://localhost:5341"}))
.createLogger();
PS: Change the url to point to you production Seq endpoint
log.error('Cool semantic log error for {App}', {App:'myCoolJsApp'});
Check for more examples here