Skip to content

Getting Started

Zylog is a simple and powerful logger for Node.js designed for clean output, flexible configuration, and great developer experience.

  • Colorful and readable logs.
  • Lightweight and fast.
  • Flexible configuration.
  • Multiple output streams.
  • Custom formats and levels.

Install Zylog using your preferred package manager:

Terminal window
npm install zylog

Create a logger and start logging immediately:

import zylog from 'zylog';
zylog.info('Hello World');
zylog.success('Everything works!');
zylog.warn('Be careful!');
zylog.error('Something went wrong');
  • Beautiful logs - readable, colorized output.
  • Fast & lightweight - no unnecessary overhead.
  • Flexible - customize levels, formats, and streams.
  • Multi-output - console, file, and more.
  • Developer-first - simple API, powerful internals.