Getting Started
Zylog is a simple and powerful logger for Node.js designed for clean output, flexible configuration, and great developer experience.
Features
Section titled “Features”- Colorful and readable logs.
- Lightweight and fast.
- Flexible configuration.
- Multiple output streams.
- Custom formats and levels.
Installation
Section titled “Installation”Install Zylog using your preferred package manager:
npm install zylogyarn add zylogpnpm add zylogQuick Start
Section titled “Quick Start”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');Why Zylog?
Section titled “Why Zylog?”- 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.