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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@byte.n/source-map-visualization-react

v1.0.3

Published

source-map-visualization-react

Readme

Source Map Visualization React

npm version

一个基于 React 的 Source Map 可视化组件库,用于分析 JavaScript 源码映射数据。

  • demo 地址:https://byte-n.github.io/source-map-visualization-react

关于

本库参考并基于 evanw/source-map-visualization 项目进行开发,将原有的 JavaScript 实现封装为 React 组件,提供了更好的集成性和可定制性。

本库特色

  • 🎨 React 组件化: 提供完整的 React 组件封装
  • 🎯 高度可定制: 支持自定义样式、渲染函数和主题
  • 🌙 主题支持: 内置 Ant Design 主题系统,支持亮色/暗色主题切换
  • 🎨 Ant Design 集成: 提供基于 Ant Design 的完整示例
  • 📱 响应式设计: 自适应不同屏幕尺寸
  • 高性能: 继承原项目的高性能特性,支持大型 Source Map

安装

npm install @byte.n/source-map-visualization-react

快速开始

import React, { useRef } from 'react';
import SourceMapVisualization, {
  type SourceMapVisualizationProps,
} from '@byte.n/source-map-visualization-react';

export default () => {
  const ref = useRef<{ ele: HTMLDivElement }>(null);
  return (
    <div style={{ width: 800, height: 600 }}>
      <SourceMapVisualization
        ref={ref as any}
        code={'/* minified code here */'}
        codeMap={'/* source map string or data url */'}
      />
    </div>
  );
};
  • 最小必需属性: code
  • 可选属性: codeMapcodeMapStylehoverRestoreDelayMsprefixClsclassNameclassNamesstylestylesrenderTopBarrenderBottomBar

文档

详细的 API 文档和使用示例请参考 文档站点

许可证

MIT License