Socket
Book a DemoInstallSign in
Socket

@nearform/trail-fastify-plugin

Package Overview
Dependencies
Maintainers
35
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nearform/trail-fastify-plugin

Fastify plugin for the audit trail logging service

latest
Source
npmnpm
Version
6.0.0
Version published
Maintainers
35
Created
Source

@nearform/trail-fastify-plugin

npm

trail-fastify-plugin is a plugin to add the trail REST API to a Fastify server.

Install

To install via npm:

npm install @nearform/trail-fastify-plugin

Usage

const Fastify = require('fastify')

const main = async function() {
  const fastify = Fastify()

  fastify.register(require('@nearform/trail-fastify-plugin'))

  await fastify.listen(3000, console.log)
}

main().catch(console.error)

Trails route will be then accessible on the /trails path.

For more information on the REST API, you can check the generated OpenAPI / Swagger JSON file, which will available at the /trails/swagger.json path.

Configuration

The plugin takes the following configuration options:

  • logger: A logger to be passed to the trails manager.
  • db: Database settings for the trails manager.
  • pool: A pre-configured database pool to be used by the trails manager; used in preference to any specified database settings.
  • trailsManager: A pre-configured trails manager instance; used in preference to any of the previous settings.

License

Copyright nearForm Ltd 2020. Licensed under MIT.

Keywords

audit

FAQs

Package last updated on 03 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts