@softonic/hapi-access-logger

5.0.0 • Public • Published

@softonic/hapi-access-logger

Hapi plugin to log finished requests and responses

Installation

npm install @softonic/hapi-access-logger

Usage

import HapiAccessLogger from '@softonic/hapi-access-logger';

await server.register({
  plugin: HapiAccessLogger,
  options: {
    logger: bunyan.createLogger({ name: "myapp" }),
    // whitelistHeaders and blacklistHeaders should not be used together
    whitelistRequestHeaders: [ 'host', 'accept', 'content-type'  ],
    blacklistRequestHeaders: [ 'authorization' ],
    whitelistResponseHeaders: [ 'content-type' ],
    blacklistResponseHeaders: [ 'set-cookie' ],
    isLoggableRequest: request => get(request, 'route.settings.tags', []).includes('page')
  },
});

Testing

Clone the repository and execute:

npm test

Contribute

  1. Fork it: git clone https://github.com/softonic/hapi-access-logger.git
  2. Create your feature branch: git checkout -b feature/my-new-feature
  3. Commit your changes: git commit -am 'Added some feature'
  4. Check the build: npm run build
  5. Push to the branch: git push origin my-new-feature
  6. Submit a pull request :D

Package Sidebar

Install

npm i @softonic/hapi-access-logger

Weekly Downloads

115

Version

5.0.0

License

Apache-2.0

Unpacked Size

35.5 kB

Total Files

10

Last publish

Collaborators

  • softonic