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

ptlog

v1.0.1

Published

> 你是否曾经为混乱而冗杂的打印语句而怒过,又或者想要轻松控制打印语句的开启与关闭,又或者想要美化控制台的打印语句样式,那么prettyLog.js将解决你的烦恼。

Downloads

7

Readme

控制台的垃圾清理人员 —— prettyLog.js

你是否曾经为混乱而冗杂的打印语句而怒过,又或者想要轻松控制打印语句的开启与关闭,又或者想要美化控制台的打印语句样式,那么prettyLog.js将解决你的烦恼。

安装

通过https请求引入

<script src = "https://file.40017.cn/pinche/public/prettyLog.min.js"></script> 

通过npm安装

npm i ptlog

怎么使用

Log({
       unique : true,  //是否打开只显示最后一条或者最后一组的打印语句
       log : {         // 为log打印的语句设置样式
            fontSize : '18px', 
            background : '#000',
            color : '#fff'
         },
        hideLogs : false //是否在window的logPag下存储清除掉的记录信息
     })

只保留最后一句打印语句

所有通过console.log打印的语句,都会有跟随的标识,默认是localeTimeString.

Log({
       unique : true, 
})

console.log('something') // something 下午2:04:02
console.log('something', 'something') // something something

只保留最后一组打印语句

 Log({
       unique : true, 
 })

 console.group()
 console.log( 'john')
 console.log({ name : 'john'})
 console.groupEnd()

为打印在控制台的字符串(强调是string类型)语句配置样式

Log({
    unique : true,
    log : {
        fontSize : '18px',
        background : '-webkit-linear-gradient(right, rgba(59,187,189,1) 0%, rgba(59,187,189,0.25) 100%)',
        color : '#fff',
        padding : '5px 10px',
        height : '20px',    
    }
})

效果如下 :

隐藏控制台所有打印信息

隐藏控制台所有打印信息,在window对象下的LogPag里查看隐藏的打印信息,上线时避免打印语句在控制台暴露敏感信息,同时如果想要获知其他逻辑的反馈信息,可以在LogPag里查看。

 Log({
    unique : true,
    hideLogs : true , //false则隐藏log记录, true放开
 })

 console.log('hide thing.')
 console.log('John')
 console.info(window.LogPag) //{Symbol(下午2:56:31): "hide thing.", Symbol(下午2:56:31): "John"}