UNPKG

nsyslog

Version:

Modular new generation log agent. Reads, transform, aggregate, correlate and send logs from sources to destinations

23 lines (16 loc) 322 B
# Installation As always in node: ``` npm install -save nsyslog ``` Then: ```javascript const NSyslog = require('nsyslog'); async function start() { let cfg = await NSyslog.readConfig("config.json"); let nsyslog = new NSyslog(cfg); await nsyslog.start(); } start(); ``` [Back](../README.md)