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

prettyjs

v0.0.7

Published

- 1kb(gzip) - 脚本错误监控,唤起 prettyjs 清晰地查看错误

Downloads

14

Readme

prettyjs_loader

  • 1kb(gzip)
  • 脚本错误监控,唤起 prettyjs 清晰地查看错误

安装

使用 cdn 地址或下载下来

  • https://unpkg.com/prettyjs/dist/prettyjs_loader.min.js

使用方式

只需将 prettyjs_loader 加载到页面中

<script src='https://unpkg.com/prettyjs/dist/prettyjs_loader.min.js'></script>

API

window.pretty_autoload = true; // 捕获到错误时,自动唤起错误脚本展示, 默认 true
window.pretty_load(url, line, col, msg);  // 手动唤起错误脚本展示
window.pretty_report(url, line, col, msg); // 手动log错误(点击可跳转到自动唤起错误脚本展示),且发起对应url请求可在抓包查看到

在线示例

示例代码


prettyjs

压缩代码报错,展示格式化后的代码对应位置

安装

使用 cdn 地址或下载下来

  • https://unpkg.com/prettyjs/dist/prettyjs.min.js

使用方式

<script src='https://unpkg.com/prettyjs/dist/prettyjs.min.js'></script>
<script>
var $dom = document.getElementById("prettyjsId"),
    url = 'http://localhost:8099/index-5b6f68.js',
    line = 6,
    col = 70277;

window.prettyjs($dom, url, line, col);
</script>

API

window.prettyjs($dom, url, line, col);

  • $dom - 用于放置展示内容的 dom
  • url - 需要展示内容的地址
  • line - 压缩代码对应的行数
  • col - 压缩代码对应的列数