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

k2-logger

v1.0.24

Published

autoSaveTime: 自动保存日志的间隔时间,默认值5分钟自动保存一次

Downloads

21

Readme

参数配置

autoSaveTime: 自动保存日志的间隔时间,默认值5分钟自动保存一次

saveToLocalstorage: 是否开启自动保存,默认值true(开启),

autoSave: 是否开启自动保存,默认值true(开启),

url: 日志保存接口地址, 无默认值,必填,

method: 日志保存接口请求方式,默认为POST方式,

logType: 日志级别 debug,info,warn,error,(clear, off)

currentAccount: 当前用户账号

currentName: 当前用户名称

loginDate: 登录时间

tokenId: tokenId

listenJsError: 是否开启监听js语法报错,默认值false(不开启)

listenStackRecord:是否记录堆栈信息, 默认值false(不开启),需要开启js语法报错才有用

listenPromiseError: 是否开启监听promise报错,默认值true(开启)

listenBeforeUnload: 是否开启页面关闭监听,默认值true(开启)

使用方式

npm 安装

npm install k2-logger --save

yarn 安装

yarn add k2-logger

引用方式

import logger from 'k2-logger'

使用示例:

const loggerService = logger.create({

//相关配置信息

})

export default loggerService

#####loggerService实例上存在的方法有:

send(item) 新增日志; 参数形式{type: 'debug|info|warn|error', message: '日志信息', ...}

######以下四个方法可以不需要带type参数:

debug(item) 新增debug级别的日志

info(item) 新增info级别的日志

warn(item) 新增warn级别的日志

error(item) 新增error级别的日志