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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@cfp-studio/analyzer-api

v0.1.12

Published

核心分析 API,用于组件/Story/TS 类型的静态分析、可预览 ID 生成与解析、分析器工厂等。为 CFP Studio 设计器和相关工具提供统一的类型分析与组件元数据抽象。

Readme

@cfp-studio/analyzer-api

核心分析 API,用于组件/Story/TS 类型的静态分析、可预览 ID 生成与解析、分析器工厂等。为 CFP Studio 设计器和相关工具提供统一的类型分析与组件元数据抽象。

特性

  • 提供统一的 Analyzer 接口,支持 TS 组件/Story 批量分析、属性/类型收集、资源释放
  • 支持可预览 ID 的生成与解析,便于组件/Story 的唯一定位
  • 支持分析器工厂模式,可自定义 reader/logger
  • 类型定义清晰,便于二次开发和类型推断
  • 内置 Vitest 测试用例

主要 API/模块

  • Analyzer/AnalyzerFactory:分析器主接口与工厂
  • Component/Story/BasePreviewable:可预览对象抽象
  • generatePreviewableId/decodePreviewableId:可预览 ID 生成与解析
  • factoryWithDefaultOptions:分析器工厂默认参数包装

用法示例

import { AnalyzerFactory } from '@cfp-studio/analyzer-api';

const factory: AnalyzerFactory = ...;
const analyzer = factory({ rootDir: '/project/root' });
const { components, stories } = await analyzer.crawlFiles(['src/App.tsx']);
await components[0].analyze();
analyzer.dispose();

可预览 ID:

import { generatePreviewableId, decodePreviewableId } from '@cfp-studio/analyzer-api';
const id = generatePreviewableId({ filePath: '/src/App.tsx', name: 'App' });
const { filePath, name } = decodePreviewableId(id);

依赖

  • @cfp-studio/jsx-processor:JSX 结构分析
  • @cfp-studio/serializable-values:可序列化值类型
  • @cfp-studio/type-analyzer:TS 类型分析
  • @cfp-studio/vfs:虚拟文件系统
  • pino:日志
  • unbuild:打包
  • vitest:测试

构建

pnpm build

许可证

MIT