mongo-morgan

2.0.3 • Public • Published

mongo-morgan

NPM Version NPM Downloads Build Status

This is build upon morgan module which saves logs to mongodb database

API

var mongoMorgan = require('mongo-morgan')

mongoMorgan(mongodburl, format, options)

Create a new mongo-morgan logger middleware function using the given mongodburl, format and options. The mongodburl is required and is connection string to mongodb The format (same as morgan module) argument may be a string of a predefined name (see below for the names), a string of a format string, or a function that will produce a log entry.

Options

Options is as same as morgan module. Just added collection properties.

collection

Save logs to the given collection in mongodb. defaults to requests.

// EXAMPLE: save logs to logs collection
mongoMorgan('url', 'combined', {
  collection: 'logs'
})

To Do

  • Save logs as objects.
  • Add documentation for saving logs as objects.

License

MIT

Package Sidebar

Install

npm i mongo-morgan

Weekly Downloads

65

Version

2.0.3

License

MIT

Last publish

Collaborators

  • emech