@kavach/core
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-next.25 • Public • Published

kavach

Includes core components and type definitions used by the framework.

Kavach - Protective Armour

Logger

A minimalistic and extensible JSON logger. It offloads the actual log-writing task to writers.

The logger adds the following attributes to the logged data.

  • logged_at: Timestamp of the log as ISO String
  • running_on: Identifies where the logger was invoked from (server/browser)
  • level: Logging level (error|warn|info|debug|trace)

Logged Data

The logged data is expected to be provided as an object. The attributes of the object are merged with the base attributes before sending it to the writer.

Below are some examples assuming that the logger has been called on the server side at 8 am on 2022-11-05. The logger does not do any validation on the data structure it receives. It is up to the developer to ensure that the LogWriter will be able to handle the data appropriately.

String message input

logger.info('foo')

This will be sent to the writer as

{
  "level": "info",
  "running_on": "server",
  "logged_at": "2022-11-05T08:00:00.000Z",
  "message": "foo"
}

Object as input

logger.info({ message: 'foo' })

This will be sent to the writer as

{
  "level": "info",
  "running_on": "server",
  "logged_at": "2022-11-05T08:00:00.000Z",
  "message": "foo"
}

Object as input (including nested detail)

logger.info({ message: 'foo', data: { path: 'bar' } })

This will be sent to the writer as

{
  "level": "info",
  "running_on": "server",
  "logged_at": "2022-11-05T08:00:00.000Z",
  "message": "foo",
  "data": { "path": "bar" }
}

Following LogWriters are included in this repo

pnpm add @kavach/core @kavach/adapter-supabase
import { getLogWriter } from '@kavach/adapter-supabase'
import { getLogger } from '@kavach/core'

const writer = getLogWriter(config, options)
const logger = getLogger(writer, options)

Readme

Keywords

none

Package Sidebar

Install

npm i @kavach/core

Weekly Downloads

0

Version

1.0.0-next.25

License

MIT

Unpacked Size

220 kB

Total Files

71

Last publish

Collaborators

  • jerrythomas