Socket
Socket
Sign inDemoInstall

pino-abstract-transport

Package Overview
Dependencies
6
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pino-abstract-transport

Write Pino transports easily


Version published
Maintainers
1
Install size
211 kB
Created

Package description

What is pino-abstract-transport?

The pino-abstract-transport package provides a way to create custom transports for Pino, a fast JSON logger for Node.js. These transports can be used to process or forward log messages to different destinations or services in a structured and efficient manner. The package simplifies the development of these transports by abstracting common tasks and providing a standard interface for implementation.

What are pino-abstract-transport's main functionalities?

Creating a custom transport

This feature allows developers to create a custom transport for Pino logs. The code sample demonstrates how to use the `build` function from `pino-abstract-transport` to create a simple transport that prints log messages to the console.

"use strict";\nconst { build } = require('pino-abstract-transport');\nasync function myTransport(opts) {\n  return async function (source) {\n    for await (const obj of source) {\n      console.log(obj);\n    }\n  };\n}\nmodule.exports = build(myTransport);"

Other packages similar to pino-abstract-transport

Readme

Source

pino-abstract-transport

npm version Build Status Known Vulnerabilities Coverage Status js-standard-style

Write Pino transports easily.

Install

npm i pino-abstract-transport

Usage

import build from 'pino-abstract-stream'

exports default async function (opts) {
  return build(async function (source) {
    for await (let obj of source) {
      console.log(obj)
    }
  })
}

or in CommonJS and streams:

'use strict'

const build = require('pino-abstract-stream')

module.exports = function (opts) {
  return build(function (source) {
    source.on('data', function (obj) {
      console.log(obj)
    })
  })
}

API

build(fn, opts) => Stream

Create a split2 instance and returns it. This same instance is also passed to the given function, which is called synchronously.

Events emitted

In addition to all events emitted by a Readable stream, it emits the following events:

  • unknown where an unparsaeble line is found, both the line and optional error is emitted.
Options
  • close(err, cb) a function that is called to shutdown the transport. It's called both on error and non-error shutdowns. It can also return a promise. In this case discard the the cb argument.

License

MIT

Keywords

FAQs

Last updated on 19 May 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc