Socket
Socket
Sign inDemoInstall

bunion

Package Overview
Dependencies
39
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bunion

Semver-oriented TypeScript library skeleton.


Version published
Weekly downloads
20
increased by11.11%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Version



Bunion / BXN / B4N

This logging module is ~30% more performant than Bunyan when used as a part of a complete pipeline.

Advantages over other loggers like Bunyan

  1. Has a default logger, configured by .bunion.js
  2. Uses array format instead of object format by default - more readable and more performant
  3. Has CLI tools for navigating log files

Basic API

  1. Only writes to stdout, not stderr
  2. Uses an array format by default:
 return safe.stringify([
   '@bunion:1',  // the format of the logging line, with version number
   appName,    // your app name
   level,      // the logging level
   process.pid,  // the process pid
   host,         // the hostname where the log originated
   new Date().toUTCString(),  // a UTC date string
   fields,     // custom metadata - useful for filtering logs - fields is best used as an object {"xyz":"foo","filter":"on this"}
   message      // your message, which is an array
 ]);

Installation

 $ npm install bunion

| Usage


import log from 'bunion';
log.info('just saying hi.');
log.warn('shit hit the fan', 'part 2');
log.debug('boop', {yep:'this property is on an object'}, {'we can log': {'nested':["objects, also"]}});

the above will log this raw data to stdout:

["@bunion","foobar","INFO",10613,"host@you","Sun, 25 Aug 2019 23:05:42 GMT",null,["just saying hi."]]
["@bunion","foobar","WARN",10613,"host@you","Sun, 25 Aug 2019 23:05:42 GMT",null,["shit hit the fan","part 2"]]
["@bunion","foobar","DEBUG",10613,"host@you","Sun, 25 Aug 2019 23:05:42 GMT",null,["boop",{"yep":"this property is on an object"},{"we can log":{"nested":["objects, also"]}}]]


and then you can read/consume the logs via:


 $ node foo.js | bunion 

Use the following env value for higher performance:


 $ bunion_max_level=warn node foo.js | bunion --level warn

Using the bunion config file to setup a default logger

Use .bunion.js in the root of your project or current working directory.


Default logger configuration

const getDefaultBunionConf = (): BunionConf => {
  return {
    producer: {
      name: 'default',
      appName: 'default',
      forceRaw: false,
      level: 'TRACE',
      fields: {}
    },
    consumer: {
      localeDateString: 'en-US',
      highlightMatches: true,
      level: 'TRACE',
      match: [],
      matchAny: [],
      matchAll: [],
      inspect: {
        array: {
          length: 25
        },
        object: {
          depth: 5
        }
      },
      transform: {
        keys: {}
      }
    }
  }
};

How it works:


Example 1

Something like this:

echo '{"@bunion":true,"level":"WARN","appName":"my-api","date":"08-22-1984","value":"this is the end"}' | bunion

Will display this in your terminal:

08-22-1984 app:my-api WARN  this is the end 

Example 2

Something like this:

 echo '["@bunion","app","INFO",333,"host","date-str",null,"message1"]' | bunion

Will display this in your terminal:

date-str app:app INFO message1 

Example 3

Something like this:

 echo '["@bunion","app","INFO",333,"host","date-str",null,["message1","message2",{"foo":"bar"}]]' | bunion

Will display this in your terminal:

date-str app:app INFO  message1 message2 {
  foo: 'bar'
} 

Keywords

FAQs

Last updated on 17 Apr 2024

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