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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@gswl/rolllog

v1.0.2

Published

##### 写一个 npm 包,实现日志功能

Readme

lognpmproject

写一个 npm 包,实现日志功能
  • 需求分析:
  • 1.要能写大文件
  • 2.熟悉下 nodejs 的使用
  • 3.用户 gswl 创建命令行工具
  • 4.要考虑性能问题
  • 5.重点 在于 node fs 模块的使用
// 以testRoot为根目录创建日志文件, 每隔指定时间(单位天)就会把之前的日志删除
init({root:"C:/testRoot",cleanInterval:3})

// cleanInterval为3时,今天是20210518,则只保留20210517,20210516,把20210515和之前的日志目录都删除
// 这个清理逻辑每次启动和日期过了一天都要执行一次

const log1 = new LogFile("app/agent");

// 在 C:/testRoot/20210518/app/agent文件里写入一行log1
log1.write("log1");

// 在 C:/testRoot/20210518/app/agent文件里写入一行log2(和log1应该不在同一行)
log1.write("log2");

// 从C:/testRoot/20210518/app/agent文件里读出log2这一行
log1.read(1);

// 从C:/testRoot/20210518/app/agent文件里读出log2,log1这两行
log1.read(2);