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

fispo-core

v0.4.7

Published

The framework of building blog based on SSG

Readme

Fispo - 基于 React 的现代化 SSG 框架

npm version Node.js Version License

Fispo 是一个基于 React + Vite + TypeScript 的静态站点生成器,专为构建现代化博客而设计。支持自定义主题系统、插件生态和 Markdown 扩展,带来极致的开发体验。

✨ 特性亮点

  • ⚡ 闪电般速度 - 基于 Vite 的超快构建体验
  • 🎨 主题自由 - 完全可定制的 React 主题系统
  • 🔌 插件生态 - 强大的插件扩展能力
  • 📝 MDX 支持 - 在 Markdown 中使用 React 组件
  • 🛠 类型安全 - 完整的 TypeScript 类型支持

📦 快速开始

环境要求

  • Node.js >= 16
  • npm >= 7 或 pnpm >= 6

创建新项目

安装初始化项目工具

npm i @fispo/fispo-create -g

初始化项目

fispo-create myblog
cd my-blog
npm run dev

项目结构

.
└── docs                     # 存放博客相关内容
    ├── post                 # 文章目录(Markdown/MDX)
    └── public               # 存放公共资源文件的目录
├── .gitignore
├── .npmrc
├── fispo.config.ts          # 配置文件
├── package.json
├── README.md
└── package.json

🔧 配置指南

fispo.config.ts 示例:

import { defineConfig } from "fispo-core";

export default defineConfig({
  title: "fispo的个人博客",
  author: "fispo",
  description: "学无止境",
  notFoundImg: "/404.png",
  themeConfig: {
    navMenus: [
      {
        title: "首页",
        path: "/",
        icon: {
          prefix: "fas",
          iconName: "home",
        },
      },
      {
        title: "标签",
        path: "/tag",
        icon: {
          prefix: "fas",
          iconName: "tag",
        },
      },
      {
        title: "分类",
        path: "/category",
        icon: {
          prefix: "fas",
          iconName: "folder-open",
        },
      },
      {
        title: "关于",
        path: "/about/",
        icon: {
          prefix: "fas",
          iconName: "heart",
        },
      },
    ],
    sidebar: {
      card_author: {
        button: {
          link: "https://github.com/GitHubxxx17/fispo",
        },
      },
      card_announcement: {
        enable: true,
        content: "网站正在更新中······",
      },
    },
  },
});

🚀 构建部署

开发模式

npm run dev

生产构建

npm run build

预览构建结果

npm run preview