Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sumor/logger

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sumor/logger

This is a lightweight logger for Node.JS. It can output logs in different levels, and you can customize the scope, id, and timezone.

  • 1.2.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
48K
decreased by-26.41%
Maintainers
1
Weekly downloads
 
Created
Source

logger

A Sumor Cloud Tool.
More Documentation

This is a lightweight logger for Node.JS. It can output logs in different levels, and you can customize the scope, id, and timezone.

CI Test Coverage Audit

Installation

npm i @sumor/logger --save

Prerequisites

Node.JS version

Require Node.JS version 16.x or above

require Node.JS ES module

As this package is written in ES module, please change the following code in your package.json file:

{
  "type": "module"
}

Usage

General Usage

import Logger from '@sumor/logger'
const logger = new Logger()

logger.trace('Hello World!')
// You will see the following output:
// 2020-01-01 00:00:00.000 TRACE MAIN - Hello World!

Change Scope

For some case, we need categorize logs. scope is used for this purpose.

import Logger from '@sumor/logger'
const logger = new Logger({
  scope: 'DEMO'
})
logger.trace('Hello World!')
// You will see the following output:
// 2020-01-01 00:00:00.000 TRACE DEMO - Hello World!

Identifier User

For some case, we need identifier user. id is used for this purpose.

import Logger from '@sumor/logger'
const logger = new Logger({
  id: 'USER001'
})
logger.trace('Hello World!')
// You will see the following output:
// 2020-01-01 00:00:00.000 TRACE MAIN USER001 - Hello World!

Change Level

Most of the time, we only need to output logs of a certain level. Then we can decide if store and display it or not.

import Logger from '@sumor/logger'
const logger = new Logger()
logger.trace('Hello World!') // trace is the lowest level, all logs will be output
logger.debug('Hello World!')
logger.info('Hello World!')
logger.warn('Hello World!')
logger.error('Hello World!')
logger.fatal('Hello World!') // fatal is the highest level, only critical error will be output

Change Timezone

import Logger from '@sumor/logger'
const logger1 = new Logger({
  offset: 2 * 60 // UTC+2 offset is 2 hours
})
logger1.info('Hello World!')
// You will see the following output:
// 2020-01-01 02:00:00.000 INFO MAIN - Hello World!

const logger2 = new Logger({
  offset: 8 * 60 // UTC+8 offset is 8 hours
})
logger2.info('Hello World!')
// You will see the following output:
// 2020-01-01 08:00:00.000 INFO MAIN - Hello World!

Predefined Code

import Logger from '@sumor/logger'
const code = {
  trace: {
    HTTP_ACCESS: 'The user accesses via HTTP and the IP address is {ip}'
  },
  debug: {
    USER_TOKEN_LOADED: 'The user login information is read and the user ID is {id}'
  },
  info: {
    USER_LOGIN: 'The user logs in and the user ID is {id}'
  },
  warn: {
    USER_LOGOUT: 'The user logs out and the user ID is {id}'
  },
  error: {
    USER_LOGIN_FAILED: 'The user login failed and the user ID is {id}'
  },
  fatal: {
    USER_LOGIN_BLOCKED: 'The user login is blocked and the user ID is {id}'
  }
}
const i18n = {
  zh: {
    USER_LOGIN: '用户登录,用户ID为{id}'
  }
}
const logger1 = new Logger({
  code,
  i18n
})

logger1.code('USER_LOGIN', { id: 'USER001' })
// You will see the following output:
// 2020-01-01 00:00:00.000 INFO MAIN - The user logs in and the user ID is USER001

const logger2 = new Logger({
  code,
  i18n,
  language: 'zh-US'
})

logger2.code('USER_LOGIN', { id: 'USER001' })
// You will see the following output:
// 2020-01-01 00:00:00.000 INFO MAIN - The user logs in and the user ID is USER001

const logger3 = new Logger({
  code,
  i18n,
  language: 'zh-CN'
})

logger3.code('USER_LOGIN', { id: 'USER001' })
// You will see the following output:
// 2020-01-01 00:00:00.000 INFO MAIN - 用户登录,用户ID为USER001

Global Language Setting

process.env.LANGUAGE = 'zh-CN'
import Logger from '@sumor/logger'

const code = {
  info: {
    USER_LOGIN: 'The user logs in and the user ID is {id}'
  }
}
const i18n = {
  zh: {
    USER_LOGIN: '用户登录,用户ID为{id}'
  }
}
const logger = new Logger({
  code,
  i18n
})

logger.code('USER_LOGIN', { id: 'USER001' })
// You will see the following output:
// 2020-01-01 00:00:00.000 INFO MAIN - 用户登录,用户ID为USER001

Keywords

FAQs

Package last updated on 02 Jun 2024

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc