New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

telegram-error-logger

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

telegram-error-logger

Telegram logger to use for logging error messages

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
0
Created
Source

Telegram Error Logger

Monitor server errors in real-time via Telegram. Telegram Bot API.

npm package

What does this package do

Send error or custom logs to telegram. Seperate your logs via telegram topic channels.

📦 Install

npm i telegram-error-logger

prerequisites setup 🔴

//First create new file called initialise.ts this will create a single instance of your logger

import {Logger, Settings, TelegramChannels} from 'telegram-error-logger';
// Use your bot token that you created from bot father take a look at #prerequisites
const botToken = 'xxx'

const telegramChannel: TelegramChannels<'info' | 'error'> = {
  error: 'https://t.me/c/2021285143/1',
  info: 'https://t.me/c/2021285143/6',
};
const setting: Settings = {
  displayConsoleLogs: true,
  displayTelegramLogs: false,
  useColoredLogs: true,
  displayTime: true,
};

const logger = new Logger<'info' | 'error'>(botToken, telegramChannel, setting);

export {logger} // will be initialized with the correct type

//example of when to use the logger 
import {logger} from './initialise.ts'
try{
  await dynamoDB.putItem(params)
}catch(error){
  logger.logMessage('error', `FAILURE: ${error.message}`)
}

Prerequisites

Inorder to send messages (IMPORTANT!)

  • Create a telegram account

  • Search for the bot father

    drawing
  • Create a new telegram bot by writing the command /newbot in the chat and follow the steps. Copy the token id that was created. (Dont copy mine it wont exist when you read this😇) example bot token: 6879530036:AAFZBnoHOThpwuVn4oT2Vbp3j_n7Gs7gv_g

    drawing
  • Create a new private telegram chat group with topics turned on.

    drawing
  • Add your telegram bot to the private group chat you have made and give it admin rights.

    drawing
  • Click the share button for the topic that you need (in this case info), then click the share button and copy the link.

    drawing

🤖 Overview

This is a view of my setup drawing

How to contribute

  • Clone the repository to your local machine.
  • Create a new branch on your local repository.
  • Follow the naming convention outlined in the article you provided (Check out this article) when naming your new branch.
  • Make the necessary changes to the code and push upstream, then open up a pr

DOCUMENTATION SOON:

FAQs

Package last updated on 05 Feb 2025

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