npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

daily-rotate-logger

v1.0.3

Published

A simple Node.js logger base on Console, log to file and rotate daily

Downloads

10

Readme

daily-rotate-logger

English 中文文档


A simple Node.js logger base on Console, log to file and rotate daily.

Installation

npm i daily-rotate-logger

Quick Start

import { Logger } from "daily-rotate-logger";

// Logger is a subclass of Console, you can use any method in console as usual
global.console = new Logger({
  logDir: "log", // logDir is the root directory for storing log files
  addPidToFilename: false, // If "false", the log file name will be like "yyyy-mm-dd.out.log", if "true", "yyyy-mm-dd.pid.out.log", default "false".
  enableStdio: process.env.NODE_ENV === "development", // Set if also log to "process.stdout" or "process.stderr", default "false"
  enableTimestamp: true, // Set if auto add timestamp to every log, format like "2023-07-04 22:39:50,183"
});

console.log("hello world"); // This log will append to "yyyy-mm-dd.out.log" file
console.error(new Error("oops!")); // This log will append to "yyyy-mm-dd.err.log" file

You can also create multiple loggers for different purpose.

import { Logger } from "daily-rotate-logger";

const sqlLogger = new Logger({ logDir: "log/sql" });
const routerLogger = new Logger({ logDir: "log/router" });
// ...

一个简单的,基于 Console 的 Node.js logger, 可将日志输入到文件并按天滚动.

安装

npm i daily-rotate-logger

快速上手

import { Logger } from "daily-rotate-logger";

// Logger 是 Console 的子类, 你可以像平常那样使用任何 console 上的方法
global.console = new Logger({
  logDir: "log", // logDir 是日志文件保存的根目录
  addPidToFilename: false, // 如果是 "false", 日志文件名类似于 "yyyy-mm-dd.out.log", 如果是 "true", "yyyy-mm-dd.pid.out.log", 默认 "false".
  enableStdio: process.env.NODE_ENV === "development", // 设置是否也输出到 "process.stdout" 或 "process.stderr", 默认 "false"
  enableTimestamp: true, // 设置是否给每个日志添加时间戳,格式形如 "2023-07-04 22:39:50,183"
});

console.log("hello world"); // 这个日志会被添加到 "yyyy-mm-dd.out.log" 文件
console.error(new Error("oops!")); // 这个日志会被添加到 "yyyy-mm-dd.err.log" 文件

你也可以创建多个用于不同使用目的的 Logger 实例。

import { Logger } from "daily-rotate-logger";

const sqlLogger = new Logger({ logDir: "log/sql" });
const routerLogger = new Logger({ logDir: "log/router" });
// ...