UNPKG

@pbrgld/loggify

Version:

A lightweight, dependency-free logging library for Bun.js and Node.js – featuring emoji support, styled output, contextual logging, and high-performance stdout logging.

69 lines (68 loc) 1.52 kB
/** * Emojis (asset file) * The asset files are introduced to seperate the static information from code logic. */ export const emojis = { // Common okay: '✅', success: '✅', info: 'ℹ️ ', warn: '⚠️ ', warning: '⚠️ ', error: '❌', create: '✨', add: '➕', remove: '➖', // Specials connect: '🛜 ', timer: '⏱️ ', metrics: '⏱️ ', explosion: '💥', fuck: '🖕', shit: '💩', star: '⭐️', rocket: '🚀', init: '🔸', finished: '🏁', upload: '🔺', download: '🔻', fingerprint: '🫆 ', secure: '🔐', debug: '🐞', smiley: '🙂', // Hearts heart: '❤️ ', heartBroken: '💔', heartMagenta: '🩷 ', heartRed: '❤️ ', heartOrange: '🧡', heartYellow: '💛', heartGreen: '💚', heartCyan: '🩵 ', heartBlue: '💙', heartPurple: '💜', heartBlack: '🖤', heartGray: '🩶 ', heartWhite: '🤍', heartBrown: '🤎', // Circles circleRed: '🔴', circleOrange: '🟠', circleYellow: '🟡', circleGreen: '🟢', circleBlue: '🔵', circlePurple: '🟣', circleBlack: '⚫️', circleWhite: '⚪️', circleBrown: '🟤', // Squares squareRed: '🟥', squareOrange: '🟧', squareYellow: '🟨', squareGreen: '🟩', squareBlue: '🟦', squarePurple: '🟪', squareBlack: '⬛️', squareWhite: '⬜️', squareBrown: '🟫' };