apache-like-accesslog

1.0.4 • Public • Published

apache-like-accesslog


A simple apache-like access log middleware for nodejs.

Description

Accesslog will generate a apache like access.log file that can produce the two main formats: CLF and EXTENDED

Usage

var accesslog = require('apache-like-accesslog');
[…express...]
app.use(accesslog.logger);

Configuration

Accesslog will produce a log file called "access.log" inside the ./logs directory of your application root. You can overwrite this defaults by passing a configuration object into the accesslog.configure function.

accesslog.configure({
    format: 'CLF',
    directory: 'logs',
    filename: 'access.log'});



Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i apache-like-accesslog

    Weekly Downloads

    14

    Version

    1.0.4

    License

    none

    Unpacked Size

    5.11 kB

    Total Files

    4

    Last publish

    Collaborators

    • petershaw