0.0.5 • Published 4 years ago

@shoppre/logboard v0.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

LogBoard

Installation:

npm i @shoppre/logboard --save

Usage:

const logboard = require('@shoppre/logboard');

const express = require('express'),
    bodyParser = require('body-parser'),
    oauthserver = require('oauth2-server');

const app = express();

app.use(bodyParser.urlencoded({ extended: true }));

app.use(bodyParser.json());

logboard.init(app, { LOGBOARD_DSN: 'http://localhost:8800/projectname', logger: console | winstonLogger })