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

icms-components

v0.1.6

Published

轻量的 Next.js UI 组件库脚手架(TypeScript + Tailwind),用于内部 CMS 快速搭站。

Downloads

716

Readme

@icms/components

轻量的 Next.js UI 组件库脚手架(TypeScript + Tailwind),用于内部 CMS 快速搭站。

快速开始

  1. 安装依赖(在库目录):
npm install
  1. 本地开发(watch 构建):
npm run dev
  1. 打包(会输出到 dist/):
npm run build

在 Next.js 项目中使用

服务端渲染组件(Server Component,直接在 app 目录中可直接导入):

import { SsrCard } from '@icms/components';

export default function Page(){
  return <SsrCard title="服务端卡片">服务端渲染内容</SsrCard>
}

客户端组件(Client Component,需要在客户端使用):

import { ClientButton } from '@icms/components';

export default function Page(){
  return <ClientButton initial={0} label="点赞" />
}

引入样式

如果你希望使用组件库自带的样式(dist/styles.css),在你的 Next.js 项目中可以按需引入:

  • 使用 App Router (app/layout.tsx):
import './globals.css'; // 你的全局样式(可保留)
import '@icms/components/dist/styles.css';

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return <html lang="zh-CN"><body>{children}</body></html>;
}
  • 使用 Pages Router (pages/_app.tsx):
import '../styles/globals.css';
import '@icms/components/dist/styles.css';

export default function MyApp({ Component, pageProps }) {
  return <Component {...pageProps} />
}

说明:如果你在项目中已启用 Tailwind,并希望统一使用同一套 Tailwind 编译配置,建议在宿主项目中直接引入组件的原子类并把组件样式纳入宿主 Tailwind 的 content 扫描范围,或在发布包时使用 dist/styles.css(库已提供)。

发布到 npm

  1. 确认 package.jsonnameversionpublishConfig 正确。
  2. 登录 npm login
  3. 运行 npm publish