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

lk-log

v1.2.4

Published

在项目创建全局组件, 用于显示接口报错信息

Readme

作用

在项目创建全局组件, 用于显示接口报错信息

使用方法

1. npm i lk-log
2. 在main.js 中 增加配置
	import log, { logs } from 'lk-log' // 引入插件
	store.registerModule('logs', logs) // 合并 store 信息
	Vue.use(log, { store, router }) // 开始使用插件
	
3. 添加日志信息
	import { formatDate } from 'lk-log/utils/index'
	store.commit('ADD_LOG', { 
		href: window.location.hash, // 页面地址
		url: config.url,  // 接口地址
		date: formatDate(new Date()),  // 时间
		status: 0,  // 响应状态 0 记载中 1 正常 2 报错
		isRead: false, // 该条信息是否已被阅读
		code: '', 	// 接口错误码
		message: '', // 接口消息
		traceId: '' // 日志唯一识别码
	  }
	)
	
	修改日志信息
	store.commit('CHANGE_LOG', { traceId: '唯一识别码', logInfo: { ...要更新对象内容 }})
	
	删除某个界面日志信息
	store.commit('CHANGE_LOG', url:'前端页面地址' )
	
	批量修改日志阅读状态
	store.commit('READ_LOGS', list:'需要修改的数组' )

更新日志

1.1.2 1. 日志功能完善 2. 添加说明文件

1.1.4 1. 样式兼容

1.1.5 1. 离开界面清除错误日志

1.1.6 1.更新日志

1.1.7 1. 样式优化 2. 离开界面清除错误日志修复

1.1.8 1. 样式优化 1.1.9 1. 复制成功提醒去掉关闭按钮 1.2.0 1. 兼容本地调试