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

aichat-math-viewer

v1.0.2

Published

优化后的math-viewer,减少依赖,减少体积

Readme

aichat-math-viewer

React 组件,用于渲染带有数学公式的 Markdown 内容。

安装

npm install aichat-math-viewer
# 或
yarn add aichat-math-viewer

使用方法

首先需要在您的项目中导入 KaTeX 样式:

import 'katex/dist/katex.min.css';

使用组件:

import React from 'react';
import { MathViewer } from 'aichat-math-viewer';

function App() {
  const markdownWithMath = `
# 数学公式示例

行内公式: $E=mc^2$

块级公式:

$$
\\frac{d}{dx}\\left( \\int_{a}^{x} f(u)\\,du\\right)=f(x)
$$
  `;

  return (
    <div className="App">
      <MathViewer content={markdownWithMath} />
    </div>
  );
}

export default App;

特性

  • 支持渲染 Markdown 内容
  • 支持 LaTeX 数学公式
  • 支持 KaTeX 扩展 (mhchem)
  • 轻量级设计

API

MathViewer

主要组件,用于渲染 Markdown 和数学公式。

Props

| 属性 | 类型 | 必需 | 描述 | |------|------|------|------| | content | string | 是 | 包含 Markdown 和数学公式的内容 | | ...rest | HTMLDivElement 属性 | 否 | 传递给容器 div 的其他 HTML 属性 |

MarkdownContent

内部组件,也可单独使用。

Props

| 属性 | 类型 | 必需 | 描述 | |------|------|------|------| | content | string | 是 | 包含 Markdown 和数学公式的内容 |

许可证

MIT